docs: Add AppImage install instructions

pull/113/head
Miguel Mota 3 years ago
parent 1fb26e2918
commit d21315314a
No known key found for this signature in database
GPG Key ID: 67EC1161588A00F9

@ -141,6 +141,28 @@ cointop is available as a [nixpkg](https://search.nixos.org/packages?channel=uns
nix-env -iA nixpkgs.cointop
```
## AppImage (Linux)
You can download the AppImage from the [releases](https://github.com/miguelmota/cointop/releases) page.
```bash
VERSION=$(curl --silent "https://api.github.com/repos/miguelmota/cointop/releases/latest" | grep -Po --color=never '"tag_name": ".\K.*?(?=")')
URL="https://github.com/miguelmota/cointop/releases/download/v$VERSION/cointop-v$VERSION.glibc2.32-x86_64.AppImage"
wget $URL
```
Make AppImage executable:
```bash
chmod +x cointop-*.AppImage
```
Run AppImage:
```bash
./cointop-*.AppImage
```
## FreshPorts (FreeBSD / OpenBSD)
cointop is available as a [FreshPort](https://www.freshports.org/finance/cointop/) package.

@ -57,3 +57,7 @@ sudo flatpak install flathub com.github.miguelmota.Cointop
```bash
nix-env -uA nixpkgs.cointop
```
## AppImage (Linux)
Use the same [install](/install/#appimage-linux) instructions to update AppImage.

Loading…
Cancel
Save