I am using Navicat for MySQL on Ubuntu 18.04.4 LTS with the native Gnome UI. Prior versions of Navicat used Wine, but this version (15) provides an AppImage file which I have been launching from the terminal. Once launched, it ties up that terminal process until I exit Navicat. This annoys me.
I've found several walkthroughs that pertain to the Wine version on Unity, but nothing for running the AppImage on Gnome. Is there any way I can create a shortcut on the launcher bar (or wherever) in Gnome so I don't have to launch the process from a terminal window?
You could do it using appimaged:
chmod +x ~/Downloads/navicat15-mysql-en.AppImage
mkdir ~/bin
cp ~/Downloads/navicat15-mysql-en.AppImage ~/bin
Download appimaged:
chmod a+x appimaged-x86_64.AppImage
./appimaged-x86_64.AppImage --install
export PATH=$PATH:/home/user/.local/bin
- optional, if yourecho $PATH
does not contain/home/user/.local/bin
directory, whereappimaged
binary is copied. Could be added in~/.bashrc
appimaged -v
- this command will register.AppImage
file found in~/bin
directoryappimaged -v
command execution by Ctrl+C.Tested on Ubuntu 19.10 and Lubuntu 18.04.