Hello Ubuntu community,
I try to create a setup script for all my settings that I fire after a fresh installation to restore all of my settings.
The script includes:
gsettings set org.gnome.mutter.keybindings toggle-tiled-left "['<Super>h']"
gsettings set org.gnome.mutter.keybindings toggle-tiled-right "['<Super>l']"
After execution the first mapping works as expected but the second one does not. Any idea why that could be the case or how I could analyze the problem?
Thanks for any help, Franz
Based on vanadium's answer I found that indeed my mapping was blocked by conflicting mappings. To find those I used
gsettings list-recursively | grep "\['<Super>l'\]"
After that I disabled all with a command like the one given by vanadium.
In a default Ubuntu install, Super+l is used to lock the screen. You will need to disable (or change) that keybinding first:
That would be in a default Ubuntu 18.04, 20.04 or Ubuntu 20.20 install. If on your system the key is mapped elsewhere, you can find its assignment with the command (with thanks to Franz):