gnome-shell 3.5.90 has a new, bigger, message-tray. Restyle the systemMonitor appropriately to blend in.
26 lines
711 B
CSS
26 lines
711 B
CSS
.extension-systemMonitor-container {
|
|
spacing: 5px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-bottom: 10px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.extension-systemMonitor-indicator-area {
|
|
border: 1px solid #8d8d8d;
|
|
border-radius: 3px;
|
|
width: 100px;
|
|
/* message tray is 72px, so 20px padding of the container,
|
|
2px of border, makes it 50px */
|
|
height: 50px;
|
|
-grid-color: #575757;
|
|
-cpu-total-color: rgb(0,154,62);
|
|
-cpu-user-color: rgb(69,154,0);
|
|
-cpu-sys-color: rgb(255,253,81);
|
|
-cpu-iowait-color: rgb(210,148,0);
|
|
-mem-user-color: rgb(210,148,0);
|
|
-mem-cached-color: rgb(90,90,90);
|
|
-mem-other-color: rgb(205,203,41);
|
|
background-color: #1e1e1e;
|
|
}
|