I'm using gnome-shell in Oneiric and would like to know if there is a way to change the text "Activities" (in the top left corner) to a picture if the Ubuntu logo. I have already succeeded at replacing it with "Ubuntu" by editing one line in this file:
/usr/share/gnome-shell/js/ui/panel.js:
From:
this._label = new St.Label({ text: _("Activities") });
To:
this._label = new St.Label({ text: _("Ubuntu") });
Anyone with js expertise here? Could I possibly change this to something like
this._label = new St.Label({ image: _(/use/share/icons/ubuntu.ico) });