Reputation: 1477
As an emacs user, I would like to have <super> generally available to me as a modifier. I've had some success in disabling Ubuntu's default hotkeys, but am having trouble with <super>-s. The default behavior is to launch the workspace switcher, and I haven't found a way to change that. I've been using CompizConfig Settings Manager for my successful changes.
Upvotes: 2
Views: 1255
Reputation: 9390
sudo apt-get install compizconfig-settings-manager
)ccsm
) and go to Ubuntu Unity Plugin -> BehaviorIf that does not work, go for the hard way:
gconf-editor
<Super>s
(with the <>), with the "Search also in key values" option clicked.Upvotes: 5
Reputation: 31
If you don't (want to) have compizconfig-settings-manager installed, you can use
gconftool-2 --set "/apps/compiz-1/plugins/unityshell/screen0/options/show_launcher" --type string ""
to disable the key mapping
( http://linux.die.net/man/1/gconftool-2 )
Upvotes: 1