Search
adding appimages to bin
Published
May 13, 2023
Last updated
May 25, 2023
Edit Source
source
Say you have a nvim.appimage
somewhere. To be able to run it anywhere,
add it to the /usr/bin
directory.
make it executable.
1
| chmod +x program.appImage
|
symlink it to bin
1
| ln -s /path/to/appimage/nvim.appimage /usr/bin/nvim
|