I find the Messaging Tray (the bottom bar) in GNOME Shell rather inconvenient. I'm looking for a way to disable it. KRSNA 2 ZED seems to have written an extension for doing just that, but I don't know how to install it. Any help would be appreciated.
I'm using Ubuntu 11.10 32-bit.
I just managed to hide the messaging tray. Here are the steps I followed:
Now press Alt + F2 and enter r. After that, open gnome-tweak-tool and turn on the extension 'Remove bottom bar extension'.
There is an extension in the official GNOME extension website that lets you disable the messaging tray. You only have to download it from the site and turn it on in the gnome-tweak-tool to disable the corner.
Download the tar file and untar the file. It holds 3 files...
extension.js
,metadata.json
,PKGBUILD
.According to Gnome Shell extensions you need to put these files in 1 of the following directories:
check the metadata.json has the correct shell version as your gnome-shell and then logout should show up! if not then alt-f2 and type lg to see any errors.
gernerally when i install a new extension i change the shell version list to this
"shell-version": [ "3.2.1", "3.2", "3.3", "3.3.3", "3.3.4", "3.4" ],
makes it easier if there is an update :-)
to disable functionality without having to add an extension is:
sudo gedit /usr/share/gnome-shell-js/ui/messageTray.js
find the line that says:this._traySummoned = false;
and change the value to true (the line was 2198 on my version)