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?
