我已经安装了使用 gnome classic 的 CentOS 7,并且发现热角非常烦人。
如何删除/禁用它?
答案1
安装扩展无左上角热角。
您可以通过浏览器执行此操作,访问https://extensions.gnome.org/。您需要允许运行适当的插件(在 Firefox 上,它是插件 Gnome Shell Integration)。
答案2
您需要安装扩展程序才能禁用如此烦人的“功能”,这太疯狂了。但至少,你真的不需要像 2015 年那样采取更疯狂的方式,首先安装浏览器扩展。
这应该有效:
sudo yum -y install gnome-shell-extension-no-hot-corner
然后使用 Gnome Tweak Tool 启用“无左上角热角”扩展。
答案3
使用这个awk
“一行”:
awk '/this._corner = new Clutter.Rectangle/,/ });/ { sub(/reactive: true/, "reactive: false");} { print }' /usr/share/gnome-shell/js/ui/layout.js > /usr/share/gnome-shell/js/ui/layout.js.tmp;
mv /usr/share/gnome-shell/js/ui/layout.js /usr/share/gnome-shell/js/ui/layout.js.orig
mv /usr/share/gnome-shell/js/ui/layout.js.tmp /usr/share/gnome-shell/js/ui/layout.js
来源:
Gnome3:禁用热角 |各个角度的 IT
(存档副本由回溯机2015年9月)