Run custom shell scripts on key press

5,537

I have no idea if you are using the right gconf-keys, but you can configure this via gui:

If you are using Ubuntu without desktopeffects metacity is your windowmanager, then you should use System ▸ Preferences ▸ Keyboard Shortcuts to add your command and set the keybinding.

If desktopeffects are activated, you are using compiz windowmanager. Install compizconfig-settings-manager Install compizconfig-settings-manager, run it and enter your script in the Commands preferences.

Share:
5,537
Koushik
Author by

Koushik

C++, Java, C#, ASP.NET

Updated on September 18, 2022

Comments

  • Koushik
    Koushik over 1 year

    I have created a shell script for a custom action which is working fine. I want to run this .sh file (mon.sh) on pressing Alt+F15.

    I have done the following: In gconf-editor, under apps>metacity>keybinding_commands, edited command_1 with value

    "/home/administrator/My Scripts/mon.sh" (tried without quotes also)

    under apps>metacity>global_keybindings, edited run_command_1 with value

    <Alt>F15

    But the script is not getting executed when pressing Alt+F15

    What is that I am missing?

    • david
      david about 13 years
      If you are using gnome-shell, your windowmanager is not metacity, it ist mutter
    • Koushik
      Koushik about 13 years
      I am using standard ubuntu installation. So what could it be? I am not sure about what is gnome-shell. I am running gnome, that's all I know.
  • Koushik
    Koushik about 13 years
    That worked. I didn't know it was this straightforward.
  • Elder Geek
    Elder Geek about 7 years
    Your gnome-terminal command is missing the -x switch. xdgopen will open the file in the preferred application and is unlikely to execute it. your xterm command is missing the -e switch, but all that aside. How does any of this insure that the script is launched upon pressing <Alt>F15? If you were to expand some effort to edit this answer to resolve these problems it might be useful answer, but thanks for trying to help! FYI We have no shortage of Unanswered questions that perhaps would benefit from your focus.