dotfiles-arch/.config/waybar/style.css

140 lines
1.8 KiB
CSS
Raw Normal View History

2024-06-23 01:01:24 +00:00
/** Base */
2023-11-27 18:03:12 +00:00
window#waybar {
2024-06-23 01:01:24 +00:00
font-family: "JetBrains Mono", "Font Awesome 6 Pro", monospace;
font-size: 13.5px;
color: #c7c6c3;
2024-06-07 02:05:25 +00:00
background-color: transparent;
2023-11-27 18:03:12 +00:00
}
window#waybar > box {
2024-06-20 23:23:23 +00:00
margin: 10px;
margin-bottom: 0px;
2023-11-27 18:03:12 +00:00
}
2024-06-20 23:23:23 +00:00
.modules-left,
.modules-right {
padding: 2px 0px;
background-color: #14171d;
border-radius: 4px;
}
2024-06-23 01:01:24 +00:00
/** Workspaces */
2024-06-20 23:23:23 +00:00
#workspaces {
2024-06-23 01:01:24 +00:00
margin-left: 2px;
2024-04-05 19:11:06 +00:00
}
2023-11-27 18:03:12 +00:00
#workspaces button {
2023-11-28 14:44:11 +00:00
all: initial;
2023-11-27 18:03:12 +00:00
color: #c7c6c3;
2024-06-20 23:23:23 +00:00
background-color: transparent;
border-radius: 4px;
padding: 2px 8px;
2023-11-27 18:03:12 +00:00
}
#workspaces button:hover {
2024-06-20 23:23:23 +00:00
background-color: #1a2a3a;
2023-11-27 18:03:12 +00:00
}
2024-04-05 19:11:06 +00:00
#workspaces button.focused,
#workspaces button.active {
2023-11-27 18:03:12 +00:00
background-color: #789ebf;
color: #14171d;
}
#workspaces button.urgent {
background-color: #cc5c5c;
}
2024-06-23 01:01:24 +00:00
/** Window */
window#waybar:not(.empty) #window {
padding: 0 10px;
border-left: 1px solid #4d4754;
color: #c7c6c3;
margin: 0 2px;
}
/** Tray */
2023-11-27 18:03:12 +00:00
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#custom-cmus,
#custom-newsboat,
#mpd {
padding: 0 10px;
border-right: 1px solid #4d4754;
color: #c7c6c3;
}
#tray {
border: none;
}
2024-06-23 01:01:24 +00:00
#tray > .passive {
-gtk-icon-effect: dim;
2023-11-27 18:03:12 +00:00
}
2024-06-23 01:01:24 +00:00
#tray > .needs-attention {
-gtk-icon-effect: highlight;
2023-11-27 18:03:12 +00:00
}
#battery {
color: #97bd5e;
}
#battery.warning:not(.charging) {
color: #f0c767;
}
#battery.critical:not(.charging) {
color: #cc5c5c;
}
2024-06-07 02:05:25 +00:00
#network.disconnected,
#wireplumber.muted {
2023-11-27 18:03:12 +00:00
color: #cc5c5c;
}
2024-06-07 02:05:25 +00:00
#network.wifi,
#network.ethernet {
2023-11-27 18:03:12 +00:00
color: #789ebf;
}
#wireplumber {
color: #E0DB5F;
}
#backlight {
color: #E05F91;
}
#cpu {
color: #789ebf;
}
#memory {
color: #a97fb3;
}
#temperature {
color: #97bd5e;
}
#temperature.critical {
color: #cc5c5c;
}