I started using Gnome Shell 3.2 today and I think the topbar can be a little bit better. I want to know if this is possible to make and, if possible, how I make it:

This is how is now:

enter image description here

This is how I think is better:

enter image description here

It 'just' remove the icon above the app name.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

/path/to/your/gnome-shell/theme/gnome-shell.css (default path is /usr/share/gnome-shell/theme/ )

Find there something simmilar to this: (it's on lines 3xx-4xx)

.panel-button #appMenuIcon {
        width: 0px;
        height: 0px;
}

.panel-button #appMenuIcon {
    app-icon-bottom-clip: 0px;
}

.panel-button:active #appMenuIcon,
.panel-button:checked #appMenuIcon,
.panel-button:focus #appMenuIcon {
    app-icon-bottom-clip: 0px;
}

.app-menu-icon {
   /* width: 24px;
    height: 24px; */
}

Alt+F2 -> r

That should remove the icon.

link|improve this answer
Work just fine. Thanks – euDennis Oct 25 '11 at 11:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.