basic waybar config
This commit is contained in:
parent
a7d97cd084
commit
682584db88
15 changed files with 174 additions and 266 deletions
10
waybar/styles/modules/clock.css
Normal file
10
waybar/styles/modules/clock.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
@import url('../common.css');
|
||||
|
||||
#clock {
|
||||
border: solid 1px #5e81ac;
|
||||
border-radius: 9999px;
|
||||
padding: 0 10px;
|
||||
color: #eee;
|
||||
background: linear-gradient(144deg, #8fbcbb 0%, #5e81ac 100%);
|
||||
}
|
||||
|
||||
6
waybar/styles/modules/cpu.css
Normal file
6
waybar/styles/modules/cpu.css
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#cpu {
|
||||
padding: 0 10px;
|
||||
background-color: #2ecc71;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
9
waybar/styles/modules/idle.css
Normal file
9
waybar/styles/modules/idle.css
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#idle_inhibitor {
|
||||
background-color: #2d3436;
|
||||
}
|
||||
|
||||
#idle_inhibitor.activated {
|
||||
background-color: #ecf0f1;
|
||||
color: #2d3436;
|
||||
}
|
||||
|
||||
6
waybar/styles/modules/memory.css
Normal file
6
waybar/styles/modules/memory.css
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#memory {
|
||||
padding: 0 10px;
|
||||
color: #ddd;
|
||||
background-color: #9b59b6;
|
||||
}
|
||||
|
||||
10
waybar/styles/modules/network.css
Normal file
10
waybar/styles/modules/network.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#network {
|
||||
padding: 10px;
|
||||
color: #ddd;
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
10
waybar/styles/modules/temperature.css
Normal file
10
waybar/styles/modules/temperature.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#temperature {
|
||||
padding: 0 10px;
|
||||
color: #ddd;
|
||||
background-color: #f0932b;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
13
waybar/styles/modules/tray.css
Normal file
13
waybar/styles/modules/tray.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#tray {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
2
waybar/styles/modules/window.css
Normal file
2
waybar/styles/modules/window.css
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
|
||||
10
waybar/styles/modules/wireplumber.css
Normal file
10
waybar/styles/modules/wireplumber.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#wireplumber {
|
||||
background-color: #fff0f5;
|
||||
padding: 0 10px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#wireplumber.muted {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
28
waybar/styles/modules/workspaces.css
Normal file
28
waybar/styles/modules/workspaces.css
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
|
||||
#workspaces {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
background-color: transparent;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #5e81ac;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background-color: #64727d;
|
||||
box-shadow: inset 0 -3px #ffffff;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue