我正在尝试禁用 gnome(Arch Linux)左上角的热点,我在 arch wiki 上读到了相关教程这里。
问题是,我只能找到这一部分:
this.actor = new Clutter.Actor({ name: 'hot-corner-environs',
x: this._x, y: this._y,
width: 3,
height: 3,
reactive: false });
this._corner = new Clutter.Actor({ name: 'hot-corner',
width: 1,
height: 1,
opacity: 0,
reactive: false });
所以我禁用了那里的反应性属性,但它没有改变任何东西。是的,我重新启动了 :)
答案1
在 Gnome Shell 3.10 中,编辑/usr/share/gnome-shell/js/ui/layout.js
_updateHotCorners: function() {
...
let haveTopLeftCorner = true;
...
},
并更改true
为false
。按 Alt-F2,然后键入“r”以应用更改。