4

How on ElementaryOS change Wingpanel on Top Panel / Global Menu / Super-Wingpanel like OS X ?

enter image description here

Anton Dozortsev
  • 224
  • 1
  • 5
  • 14

1 Answers1

3

You have to open new administrator window, to do this type: gksu pantheon-files in terminal enter your password, then navigate to usr/share/themes/elementary(or other theme)/gtk-3.0 , open apps.css (with scratch) and you have to find :

 /*********
 * Panel *
 ********/

 .panel {
    background-color: alpha (#000, 0.7);
    color: #fff;
    font-weight: bold;
}

for example if you want to make the panel gray you have to change the zeros in to d8d8d8 and the other numbers are for transparency (i think form 0.1 to 0.9)

.panel {

    background-color: alpha (#d8d8d8, 0.7);
    color: #fff;
    font-weight: bold;

For the fonts you have to find in this :

.composited-indicator {

    background-color: @transparent;
    color: #fff;
    padding: 0 2px;

and to change the 3 f to zeroes :

.composited-indicator {

    background-color: @transparent;
    color: #000;
    padding: 0 2px;

then close scratch and type in terminal killall wingpanel and you are ready.

jasonwryan
  • 71,734
  • 34
  • 193
  • 226
user55188
  • 31
  • 1