AppImage's in Ubuntu
17 Jul 2021AppImage
s are basically self contained scripts that can be run without installation.
We first need to make it executable via chmod +x name.AppImage
.
Then we can run it via ./name.AppImage
.
Integrating with Ubuntu
It’s useful to integrate the AppImage
into Ubuntu itself we can do this via the following steps:
- Move the
AppImage
into a directory in yourPATH
(for me~/bin
) - Create a new file in
~/.local/share/applications
with called<name-of-software>.desktop
- Fill in the file with the following details:
[Desktop Entry]
Name=$name
Exec=/home/yourhome/bin/$name.AppImage
Terminal=false
Type=Application
Categories=Development
- Done!
Thanks for reading!
If you liked that post, follow me on twitter to hear when I post new articles.