Post

Disable Hot Corner Hover in Linux Mint

UPDATE For Linux Mint 16, the hotCorner settings have been moved to /usr/share/cinnamon/js/ui/hotCorner.js.

I use Synergy on all my computers to share a common mouse and keyboard, but I’ve found that with Gnome 3 based distributions, the hot corner was causing me some grief.

The beauty of using a Linux-based system though is that you can pretty much change anything you’re unhappy with, so that’s what I’m here to do.

By default, Linux Mint uses the Cinnamon desktop, so the configuration file we’re looking for is at /usr/share/cinammon/js/ui/layout.js.

For Linux Mint 12, which still used Gnome Shell, the file was at /usr/share/gnome-shell/js/ui/layout.js.

Edit the appropriate file

1
$ sudo nano /usr/share/cinammon/js/ui/layout.js

Locate the following section (I just searched for hot-corner)

1
2
3
4
5
this._corner = new Clutter.Rectangle({ name: 'hot-corner',
                                       width: 1,
                                       height: 1,
                                       opacity: 0,
                                       reactive: true });

And change the value of reactive from true to false:

1
2
3
4
5
this._corner = new Clutter.Rectangle({ name: 'hot-corner',
                                       width: 1,
                                       height: 1,
                                       opacity: 0,
                                       reactive: false });

Log off, then back on. Booya!

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.