Keyboard Shortcuts – How to Restore Default Keyboard Shortcuts

shortcut-keys

I have customized some of the shortcuts in System ▸ Preferences ▸ Keyboard Shortcuts.

How can I restore individual shortcuts to their default settings? I do not want to reset all of the shortcuts, just a few of my choice.

Best Answer

It looks like the way keyboard shortcuts are implemented has slightly changed for Ubuntu 13.04

The shortcut settings are saved in the following locations (may be different for 12.10):

org.gnome.desktop.wm.keybindings
org.gnome.settings-daemon.plugins.media-keys
org.gnome.shell.keybindings
org.compiz.integrated

You can find these in the dconf-editor application, then using the "Set to Default" button to reset each desired entry. dconf-editor can be installed at the command line with sudo apt-get install dconf-tools.

Otherwise, you could also try resetting any one of the locations by using the following command in the terminal:

gsettings reset-recursively <insert location>

E.g.:

gsettings reset-recursively org.gnome.settings-daemon.plugins.media-keys`
Related Question