I created ~/.local/share/applications/bt.desktop file containing entry
[Desktop Entry]
Name=btsync
Exec==~/Progs/btsync
Icon=un-reboot.png
Type=Application
Terminal=true;
Command ~/Progs/btsync works and btsync runs. How do I add this to Activities menu to be just clicked?
Exec==
should beExec=
. Also use full path ,~
is not understood by.desktop
files .Terminal=true
does not need semicolon – Sergiy Kolodyazhnyy Jun 19 '16 at 23:32