在 ubuntu 11.04 中,有一个解决方法,使用 gconf-editor 并将键设置
/apps/gnome_settings_daemon/plugins/xrandr/active
为 false。
但是在采用 ubuntu 11.10(gnome 3)的 gconf-manager 中没有这样的键。
答案1
在Ubuntu 18.04,我发现了SUPER+的两个不同的键绑定P,可以使用 禁用它们dconf-editor
。
dconf-editor
首先,如果尚未安装,则需要安装。可以在终端中使用以下命令完成此操作:
sudo apt install dconf-editor
然后您可以从终端启动它:
dconf-editor
之内dconf-editor
:
- 导航至:/org/gnome/mutter/keybindings/switch-monitor
- 如果“自定义值”字段包含
['<Super>p', 'XF86Display']
,则:- 禁用“使用默认值”
- 在“自定义值”字段中,输入以下内容:
[]
- 导航至:/org/gnome/settings-daemon/plugins/media-keys/video-out
- 如果“自定义值”字段包含
'<Super>p'
,则:- 禁用“使用默认值”
- 在“自定义值”字段中,删除所有内容。
答案2
新版本的gnome-settings-daemon
将其配置信息存储在 中,dconf
而不是 中gconf
。
要执行与 11.04 上的操作相同的操作,请尝试以下步骤:
- 安装该
dconf-tools
包,然后运行dconf-editor
。 - 在左侧的树中,导航
org
->gnome
->settings-daemon
->plugins
->xrandr
。 - 取消
active
选中复选框。
答案3
以下是如何在终端中使用 gsettings 禁用它
gsettings set org.gnome.mutter.keybindings switch-monitor "[]"
如果你想恢复快捷方式
gsettings set org.gnome.mutter.keybindings switch-monitor "['<Super>p']"
答案4
自 2012 年 10 月 18 日发布的 Ubuntu 12.10 以来,这仍然是一个问题。错误修复因为这似乎正在进行中,所以至少有一种更简单的方法来重新配置键绑定,但它已被标记为无效,因为据说这在 中已得到修复gnome-settings-daemon
。
归根结底,这个问题据称是由于一些硬件供应商对视频进行了硬编码Super-P。
曾经有更新了错误跟踪器上的对话因为目前接受的答案建议不要关闭 xrandr,而是关闭媒体键:
请尝试以下操作:
- 安装该
dconf-tools
包,然后运行dconf-editor
。 - 在左侧的树中,导航
org
->gnome
->settings-daemon
->plugins
->media-keys
。 - 取消
active
选中复选框。
或者这个命令行版本是:
dconf write /org/gnome/settings-daemon/plugins/media-keys/active false