Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I can assign Alt+F1 and Alt+F2 to any function I like in the keyboard configuration window, but its not beeing used. Alt+F1 is always 'dash home' and Alt+F2 is always 'run'

share|improve this question

1 Answer

I sat with the same issue after upgrading to 12.04 and installing Gnome Shell. I tried to disable Alt+F1 from wherever I could, to no avail.

As I was about to give up I found this gist: https://gist.github.com/2402448

gsettings set org.gnome.desktop.wm.keybindings panel-main-menu "[]" # disable Alt+F1

Credits to https://gist.github.com/musinsky

share|improve this answer
Indeed works for Alt-F1. I found the following way to list built-in keybindings: for k in `gsettings list-keys org.gnome.desktop.wm.keybindings`; do echo $k = `gsettings get org.gnome.desktop.wm.keybindings $k`; done – Jesse Glick May 23 '12 at 15:03
Worked for me on Ubuntu 13.04 – janlala May 17 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.