Answers:
该位置已更改为11.04,以下为11.04。您可以通过快速编辑文件来执行此操作:/usr/share/gnome-shell/js/ui/layout.js
如果找到代码:
this._corner = new Clutter.Rectangle({ name: 'hot-corner',
width: 1,
height: 1,
opacity: 0,
reactive: true });
更改reactive: true
为reactive: false
,它将禁用热角,但仍然可以通过单击“活动”按钮或按Super(Windows)键来激活概览屏幕。
我将研究扩展以修改此行为,而不是直接修改panel.js文件,因为它将被更新覆盖。
与上述相同,但编辑文件/usr/share/gnome-shell/js/ui/panel.js
:
this._corner = new Clutter.Rectangle({ width: 1,
height: 1,
opacity: 0,
reactive: true });
在11.10及更高版本中,可以通过从官方Gnome-shell扩展站点安装“ No Topleft Hot Corner ”扩展来禁用该热角。
从https://github.com/hermanus/gnome-shell-extensions/tree/master/Gnome-shell-activities-hotspot-disabler下载extension.js
并放入。目录的名称很重要-如果也更改了uuid,则可以更改它。metadata.json
~/.local/share/gnome-shell/extensions/activitieshotspotdisabler@harmus.gmail.com/
metadata.json
这将安装一个覆盖该Panel.HotCorner.prototype._onCornerEntered
功能的扩展程序,因此仅在单击“活动”时才会显示活动屏幕。要激活它,请访问https://extensions.gnome.org/local/。
当前,此扩展与Gnome 3.6版一起使用,这是Ubuntu 12.10附带的扩展。如果您在Github上浏览历史记录,将会发现与较早的Gnome发行版兼容的版本(最高3.0。= Ubuntu 11.04。)