我如何恢复默认的键盘快捷键?

我如何恢复默认的键盘快捷键?

我已经在系统▸偏好设置▸键盘快捷键中自定义了一些快捷键。

如何将单个快捷方式恢复为默认设置?我不想重置所有快捷方式,只想重置一些我选择的快捷方式。

答案1

Ubuntu 13.04 的键盘快捷键实现方式似乎略有改变

快捷方式设置保存在以下位置(12.10 可能有所不同):

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

您可以在dconf-editor应用程序中找到这些,然后使用“设置为默认值”按钮重置每个所需的条目。dconf-editor可以使用 在命令行中安装sudo apt-get install dconf-tools

否则,您也可以尝试使用以下方法重置任何一个位置以下命令在终端中:

gsettings reset-recursively <insert location>

例如:

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

答案2

它们的键绑定存储在 gconf 数据库中,但不幸的是它们并不都在同一个地方。

但是,您可以通过查看位于 中的文件来获取所有键绑定 gconf 键的列表/usr/share/gnome-control-center/keybindings/

例如,/usr/share/gnome-control-center/keybindings/01-desktop-key.xml包含所有快捷键的键列表键盘快捷键列出Desktop

<?xml version="1.0" encoding="UTF-8"?>
<KeyListEntries name="Desktop">
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/help"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/calculator"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/email"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/www"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/power"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/screensaver"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/home"/>
  <KeyListEntry name="/apps/gnome_settings_daemon/keybindings/search"/>
</KeyListEntries>

一旦知道了键名,您就可以将其恢复为默认值。

例如,假设你想恢复启动计算器的快捷方式,

截屏

只需运行:

gconftool -u "/apps/gnome_settings_daemon/keybindings/calculator"

截屏

答案3

gsettings reset-recursively  org.gnome.desktop.wm.keybindings

答案4

你不能。但是如果你按帮助并单击,你可以看到默认值是什么 第 1.2 节 —— 键盘技能右边是关键客户的列表:

  • 全局快捷键
  • 窗口快捷键
  • 应用程序密钥
  • 访问密钥

问候

相关内容