I don't wish to open terminal each time to execute my shell script. Is it possible assign a keyboard shortcut to execute the shell script I have created?
I don't wish to open terminal each time to execute my shell script. Is it possible assign a keyboard shortcut to execute the shell script I have created?
+
to add a custom shortcut.Name it anything.gnome-terminal -e "path_of_script"
. Make sure your script has executable permission.Also if you want your gnome-terminal should remain open after executing the script, add
read
at the last of your script.