当前位置: 首页>>技术教程>>正文


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

,

问题描述

我已在系统▸首选项▸键盘快捷键中自定义了一些快捷键。

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

最佳解决办法

对于Ubuntu 13.04,看起来实现键盘快捷键的方式略有改变

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

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

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

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

gsettings reset-recursively <insert location>

(例如gsettings reset-recursively org.gnome.settings-daemon.plugins.media-keys)

次佳解决办法

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

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

例如,/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>

知道密钥名称后,可以将其恢复为默认值。

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

shortcut-keys,ubuntu

只需运行:

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

shortcut-keys,ubuntu

第三种解决办法

构建DoR的答案,这个在命令行输入的简单脚本将重置所有快捷方式:

cd /usr/share/gnome-control-center/keybindings
for entry in $(grep KeyListEntry * |cut -d'/' -f2- |cut -d'"' -f1); do
    echo $entry
    gconftool -u "/$entry"
done

第四种办法

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

第五种办法

你不能。但是如果你按下帮助并单击第1.2节 – 键盘技能,你可以看到默认值是什么,然后在右边你有一个关键grous列表:

  • 全局快捷键

  • 窗口快捷键

  • 应用密钥

  • 访问密钥

问候

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/1854.html,未经允许,请勿转载。