Last active
March 18, 2017 17:04
-
-
Save bazi/d1f284e9f34802b5c91ef6bb03b0a85e to your computer and use it in GitHub Desktop.
Disable key binding in Ubuntu (Unity)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to disable default key bindings, here Alt+F7(move window) and Alt+F8(resize window) | |
gsettings set org.gnome.desktop.wm.keybindings begin-resize [] | |
gsettings set org.gnome.desktop.wm.keybindings begin-move [] | |
# to revert | |
gsettings reset org.gnome.desktop.wm.keybindings begin-move | |
gsettings reset org.gnome.desktop.wm.keybindings begin-resize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment