Last active
May 10, 2016 17:55
-
-
Save fwilhe/349f96b15a6891609849 to your computer and use it in GitHub Desktop.
GNOME Shortcuts Script
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
#!/bin/bash | |
set -o nounset | |
set -o errexit | |
set -o xtrace | |
# Tested using a default Fedora Workstation 23 with Gnome Shell | |
# Set Compose-Key to CapsLock, see: | |
# https://help.gnome.org/users/gnome-help/stable/tips-specialchars.html.en | |
gsettings set org.gnome.desktop.input-sources xkb-options "['compose:caps']" | |
# Disable Switching of Keyboard Layouts | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "[]" | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward "[]" | |
# Disable F10 in gnome-terminal, so that mc can use it | |
gsettings set org.gnome.Terminal.Legacy.Settings menu-accelerator-enabled "false" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is done now via system-automation