I have a simple script I want to be able to run from a Desktop entry on Ubuntu 19.10. I followed these directions and created a .desktop
file but I'm getting an error saying it is invalid. Here is the error
Here is the script
#!/usr/bin/env bash
lsusb
read -p ""
And here is the .desktop
file:
[Desktop Entry]
Name=lsusb
Comment=Comment
Exec=/home/user/lsusb.sh
Terminal=true
Type=Application
Icon=
Did I miss something?
Application
inType
. I tried this desktop entry on my system running 1.04 and it fails if there's a space afterApplication
. – Kulfy Dec 12 '19 at 20:40