https://extensions.gnome.org/ -- for a lot of other gnome shell extensions
From the gnome shell cheat sheet
---------------------------------------------------------------------------------------
Switching to and from the overview
Hot corner - moving the mouse pointer to the top left corner of the screen will take you to the overview or back to the desktop.
---------------------------------------------------------------------------------------
Since applications particularly vim always start in the top left corner
I was constantly triggering the hot corner accidently. I looked around and found
this hack on a unbuntu forum.
---------------------------------------------------------------------------------------
For 11.10
edit file /usr/share/gnome-shell/js/ui/layout.js Find this code:
this._corner = new Clutter.Rectangle({ name: 'hot-corner',
width: 1,
height: 1,
opacity: 0,
reactive: true });
Change reactive: true to reactive: false and it will disable the hot corner but still allow to activate the overview screen by clicking the Activities button or by pressing the Super (Windows) key.