The Ubuntu / Unity key bindings are interfering with Android Studio (IntelliJ) key bindings. There is a partial list of key bindings to disable / reconfigure here in section 6. It is missing Alt+F1 and I would like to see if there are any other Ubuntu key mappings that interfere with IntelliJ key mappings.
This script shows some Ubuntu / Unity key bindings, but it doesn't show that Alt+F1 is mapped. The Alt+F1 mapping is shown in CompizConfig Manager.
Is there a way to show all key bindings in Ubuntu / Unity?
grep --directories=recurse --ignore-case key linux-3.18.3/* | grep --ignore-case binding | wc
gives as output918 lines 5189 words 91272 characters
. You really don't want to download the kernel source and go look in there! ;-) I've looked for myself and it's just .... hopeless, so I switched my shortcuts to [Alt][F2], [Alt][F3], ... and left [Alt][F1] where is was! – Fabby Jan 22 '15 at 19:49gsettings list-recursively org.gnome.desktop.wm.keybindings | sort | more | grep -i '<Alt>F1'
to filter results containing<Alt>F1
– jessexknight Jul 05 '18 at 12:51