Operator Error

adventures in software development and continuous learning

Disable ‘Run a Command’ in Ubuntu 11.04

I recently upgraded one of my laptops to Ubuntu 11.04 “Natty Narwhal” and I have had the pleasure opportunity to explore the new Unity user interface for GNOME. Immediately I was annoyed when I noticed that my keyboard shortcuts for switching workspaces (ALT+F1, ALT+F2, etc) were defaulted to several dedicated commands in the Unity shell. This was frustrating because the standard GNOME Keyboard Shortcuts were overlapping with these Unity based commands. So after a bit of digging on on the intertubes, here is how you can disable the ‘Run A Command (ALT+F2)’ in the Unity shell:

On a command line:

1
2
$ sudo apt-get install compizconfig-settings-manager
$ ccsm &
  • Select ‘Category > Desktop > Ubuntu Unity Plugin’
  • On the ‘Behavior’ tab, click the button to the right of the “Key to execute a command” text.
  • Uncheck the ‘Enabled’ checkbox and click the ‘Ok’ button.

Comments