https://github.com/oeo/install-appimage
Bun script to install and manage .AppImage files
https://github.com/oeo/install-appimage
Last synced: 2 months ago
JSON representation
Bun script to install and manage .AppImage files
- Host: GitHub
- URL: https://github.com/oeo/install-appimage
- Owner: oeo
- Created: 2024-11-17T23:10:47.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-11-17T23:59:50.000Z (6 months ago)
- Last Synced: 2025-01-25T22:22:05.735Z (4 months ago)
- Language: TypeScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Don't use this.
It's for personal use only, probably useless for you.# cli/appimg
A command-line tool to install, manage, and uninstall AppImage applications on Linux systems.
## Installation
1. Clone this repository:
```
git clone https://github.com/oeo/install-appimage.git
cd install-appimage
```2. Install:
```
bun install
sudo ln -s $(pwd)/module.ts /usr/local/bin/appimg
```3. Run it
```
appimg --help
```## Usage
After installation, you can use the `appimg` command:
```bash
appimg [command] [options]
```### Commands:
- `install [--icon, --params]`: Install an AppImage
- `remove `: Uninstall an AppImage (accepts wildcard input)
- `ls [--details]`: List installed AppImages### Options:
- `--help`: Show help message
- `--icon `: Specify an icon URL for the AppImage
- `--params `: Specify additional CLI parameters
- `--details`: Show details when listing AppImages## Examples:
```bash
appimg install ./Redis-Insight-linux-x86_64.AppImage
appimg ls --details
appimg remove Redis-Insight-linux-x86_64
```## Requirements
- Bun runtime
- Linux system with sudo privileges## Note
Requires sudo privileges for installation and uninstallation operations.