https://github.com/vikdevelop/apm
AppImage package manager: simple installation, uninstallation, and finding AppImages on Linux.
https://github.com/vikdevelop/apm
appimage linux package-manager
Last synced: 29 days ago
JSON representation
AppImage package manager: simple installation, uninstallation, and finding AppImages on Linux.
- Host: GitHub
- URL: https://github.com/vikdevelop/apm
- Owner: vikdevelop
- License: gpl-3.0
- Created: 2022-04-18T11:07:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T09:31:07.000Z (almost 2 years ago)
- Last Synced: 2025-03-04T15:22:32.505Z (2 months ago)
- Topics: appimage, linux, package-manager
- Language: Python
- Homepage:
- Size: 156 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# apm
Simple installation and uninstallation AppImages on Linux.With this program, you no longer have to go to a website and manually download AppImage. Just type `apm -install appname (e.g. appimagelauncher)`, and this program will also make it easy to uninstall, update and find new AppImage.
## Usage
```bash
usage: apm [-h] [-install INSTALL] [-remove REMOVE] [--installed]
[-search SEARCH] [-update] [--update-with-name UPDATE_WITH_NAME]optional arguments:
-h, --help show this help message and exit
-install INSTALL Install AppImages
-remove REMOVE Uninstall AppImages
--installed See all installed AppImages
-search SEARCH Search AppImages in repository
-update Update installed AppImage
--update-with-name UPDATE_WITH_NAME
Update AppImage manually
```
## Add new AppImages
AppImages is located in `appimages.json` file.
To add an AppImage, type following into file:
```json
"appname": "url-to-download-appimg",
```
## Build
For build this app, you can use this simple command:
```bash
wget -qO /tmp/build.sh https://raw.githubusercontent.com/vikdevelop/apm/main/build.sh && sh /tmp/build.sh
```