2022-05-27 21:13:37 +00:00
|
|
|
@import "gruvbox-oled.css";
|
|
|
|
/*
|
|
|
|
* Available colours
|
|
|
|
* black
|
|
|
|
* white
|
|
|
|
* fg
|
|
|
|
* fghi
|
|
|
|
* bg
|
|
|
|
* bghi
|
|
|
|
* grey00 = bghi
|
|
|
|
* grey01 = bg
|
|
|
|
* grey02
|
|
|
|
* grey03
|
|
|
|
* grey04
|
|
|
|
* grey05
|
|
|
|
* grey06
|
|
|
|
* grey07
|
|
|
|
* grey08
|
|
|
|
* grey09
|
|
|
|
* grey10 = fg
|
|
|
|
* grey11 = fghi
|
|
|
|
* red
|
|
|
|
* green
|
|
|
|
* yellow
|
|
|
|
* blue
|
|
|
|
* purple
|
|
|
|
* aqua
|
|
|
|
* redhi
|
|
|
|
* greenhi
|
|
|
|
* yellowhi
|
|
|
|
* bluehi
|
|
|
|
* purple hi
|
|
|
|
* aquahi
|
|
|
|
* orangehi
|
|
|
|
* alert = orange
|
|
|
|
* warning = orangehi
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Global/Multi */
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: "Anonymous Pro", "Font Awesome 5 Brands", "Font Awesome 5 Free", Monospace;
|
|
|
|
font-size: 24px;
|
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar.window {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
border-radius: 30px;
|
|
|
|
border: solid 2px @fg;
|
|
|
|
font-size: 12px;
|
|
|
|
background-color: @bg;
|
|
|
|
animation-name: fadeIn;
|
|
|
|
animation-duration: 1s;
|
|
|
|
color: @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
#window, #custom-launcher, #workspaces, #mode, #mpd, #network, #cpu, #memory, #custom-disk, #temperature, #backlight, #custom-battery, #pulseaudio, #custom-clock, #tray, #custom-todo, #custom-osk, #idle_inhibitor, #custom-power, #custom-weather {
|
|
|
|
color: @grey06;
|
|
|
|
padding: 0 5px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tray */
|
|
|
|
|
2022-08-23 19:54:19 +00:00
|
|
|
#tray, #custom-todo, #custom-osk, #custom-pkg, #custom-bar, #idle_inhibitor, #custom-clock, #custom-power {
|
2022-05-27 21:13:37 +00:00
|
|
|
color: @bluehi;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mode, #mpd, #network, #cpu, #memory, #custom-disk, #temperature, #backlight, #custom-battery, #custom-clock, #tray, #custom-todo, #custom-osk, #idle_inhibitor {
|
|
|
|
border-top: solid 2px @fg;
|
|
|
|
border-bottom: solid 2px @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
#window {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start Launcher */
|
|
|
|
|
|
|
|
#custom-launcher {
|
|
|
|
margin-left: 15px;
|
|
|
|
color: @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Workspaces */
|
|
|
|
|
|
|
|
#workspaces {
|
|
|
|
color: @fg;
|
|
|
|
padding: 0px 0px;
|
|
|
|
margin: 0px;
|
|
|
|
margin-left: 15px;
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.visible {
|
|
|
|
background-color: @grey06;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.focused {
|
|
|
|
background-color: @fg;
|
|
|
|
color: @grey06;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
|
|
|
background-color: @redhi;
|
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mode */
|
|
|
|
|
|
|
|
#mode {
|
|
|
|
background-color: @grey06;
|
|
|
|
color: @bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Window title */
|
|
|
|
|
|
|
|
#window {
|
|
|
|
color: @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MPD */
|
|
|
|
|
|
|
|
#mpd {
|
|
|
|
color: @bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Networks */
|
|
|
|
|
|
|
|
#network {
|
|
|
|
color: @blue;
|
2022-08-23 19:55:14 +00:00
|
|
|
margin-right: -8px;
|
2022-05-27 21:13:37 +00:00
|
|
|
}
|
|
|
|
|
2022-07-21 05:19:27 +00:00
|
|
|
#network.wireguard {
|
|
|
|
padding: 0px;
|
2022-08-23 19:55:14 +00:00
|
|
|
margin-right: 0px;
|
2022-07-21 05:19:27 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 21:13:37 +00:00
|
|
|
#network.disconnected {
|
|
|
|
color: @red;
|
|
|
|
}
|
|
|
|
|
|
|
|
#network.wifi {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* CPU */
|
|
|
|
|
|
|
|
#cpu {
|
|
|
|
color: @fg;
|
|
|
|
color: @greenhi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Memory */
|
|
|
|
|
|
|
|
#memory {
|
|
|
|
color: @fg;
|
|
|
|
color: @purplehi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disk */
|
|
|
|
|
|
|
|
#custom-disk {
|
|
|
|
color: @fg;
|
|
|
|
color: @purple;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Temperature */
|
|
|
|
|
|
|
|
#temperature {
|
|
|
|
color: @fg;
|
|
|
|
color: @yellowhi;
|
|
|
|
}
|
|
|
|
|
|
|
|
#temperature.critical {
|
|
|
|
color: @redhi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Backlight */
|
|
|
|
|
|
|
|
#backlight {
|
|
|
|
color: @fg;
|
|
|
|
color: @greenhi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Battery */
|
|
|
|
|
|
|
|
#custom-battery {
|
|
|
|
color: @yellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
#custom-battery.charging {
|
|
|
|
color: @green;
|
|
|
|
}
|
|
|
|
|
|
|
|
#custom-battery.discharging {
|
|
|
|
color: @orange;
|
|
|
|
}
|
|
|
|
|
|
|
|
#custom-battery.critical {
|
|
|
|
animation-name: blink;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
color: @redhi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pulseaudio */
|
|
|
|
|
|
|
|
#pulseaudio {
|
|
|
|
margin-right: 15px;
|
|
|
|
color: @bluehi;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pulseaudio.muted {
|
|
|
|
color: @grey06;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clock */
|
|
|
|
|
|
|
|
#custom-clock {
|
|
|
|
color: @fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Todo-txt */
|
|
|
|
|
|
|
|
#custom-todo {
|
|
|
|
color: @fg;
|
|
|
|
color: @bluehi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* On-Screen Keyboard */
|
|
|
|
|
|
|
|
#custom-osk {
|
|
|
|
color: @fg;
|
|
|
|
color: @bluehi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Idle Inhibitor */
|
|
|
|
|
|
|
|
#idle_inhibitor.activated {
|
|
|
|
/* background-color: @fg; */
|
|
|
|
color: @white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Power button */
|
|
|
|
|
|
|
|
#custom-power {
|
|
|
|
margin-right: 15px;
|
|
|
|
color: @red;
|
|
|
|
}
|
|
|
|
|