2021-03-17 13:27:23 +01:00
|
|
|
@import "/home/nick/.cache/wal/colors-waybar.css";
|
2021-02-17 15:54:42 +01:00
|
|
|
|
2021-06-05 16:25:29 +02:00
|
|
|
/* Colorz/haishoku generally work well */
|
2021-03-29 11:02:26 +02:00
|
|
|
@define-color text @color3;
|
2021-03-28 04:55:58 +02:00
|
|
|
@define-color warn @color5;
|
2021-03-20 16:36:25 +01:00
|
|
|
@define-color crit @color6;
|
2021-03-28 04:55:58 +02:00
|
|
|
@define-color accent @color4;
|
2021-03-29 11:02:26 +02:00
|
|
|
@define-color hilight @color5;
|
2021-05-12 14:48:41 +02:00
|
|
|
|
2021-06-05 16:25:29 +02:00
|
|
|
|
|
|
|
/* Gruvbox
|
2021-05-12 14:48:41 +02:00
|
|
|
@define-color text @foreground;
|
|
|
|
@define-color warn @color3;
|
|
|
|
@define-color crit @color1;
|
|
|
|
@define-color accent @color2;
|
2021-05-12 15:36:12 +02:00
|
|
|
@define-color hilight @color6;
|
2021-06-05 16:25:29 +02:00
|
|
|
*/
|
2021-03-18 12:46:27 +01:00
|
|
|
|
2020-11-20 21:33:51 +01:00
|
|
|
* {
|
2021-06-07 01:15:54 +02:00
|
|
|
font-size: 12px;
|
2021-06-05 16:25:29 +02:00
|
|
|
font-family: "Kanit Medium", "Font Awesome 5 Free";
|
|
|
|
/*font-weight: bold;*/
|
|
|
|
border-radius: 10px;
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @text;
|
2021-06-01 21:18:26 +02:00
|
|
|
background: @background;
|
2021-05-16 02:02:56 +02:00
|
|
|
margin: 0;
|
2021-06-05 16:25:29 +02:00
|
|
|
/*border: 2px solid @color5;*/
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
|
2021-05-14 13:18:53 +02:00
|
|
|
.modules-left,
|
|
|
|
.modules-center,
|
|
|
|
.modules-right {
|
2021-03-28 04:55:58 +02:00
|
|
|
margin: 0;
|
2021-05-14 13:18:53 +02:00
|
|
|
padding: 0;
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
|
2020-12-11 00:30:28 +01:00
|
|
|
/* Base styling for modules */
|
2020-11-20 21:33:51 +01:00
|
|
|
#workspaces,
|
|
|
|
#mode,
|
|
|
|
#idle_inhibitor,
|
|
|
|
#pulseaudio,
|
|
|
|
#memory,
|
|
|
|
#cpu,
|
|
|
|
#clock,
|
|
|
|
#battery,
|
|
|
|
#backlight,
|
|
|
|
#disk,
|
2021-06-01 21:18:26 +02:00
|
|
|
#custom-weather,
|
2020-12-14 11:48:41 +01:00
|
|
|
#custom-updates,
|
2020-12-11 00:30:28 +01:00
|
|
|
#custom-auroch,
|
2020-11-20 21:33:51 +01:00
|
|
|
#custom-swap,
|
2020-12-02 00:53:24 +01:00
|
|
|
#custom-separator,
|
2021-06-01 21:18:26 +02:00
|
|
|
#custom-powermenu,
|
2021-02-17 15:54:42 +01:00
|
|
|
#custom-covid,
|
2020-11-20 21:33:51 +01:00
|
|
|
#tray {
|
2021-06-05 16:25:29 +02:00
|
|
|
padding: 4px 10px 4px 10px;
|
2020-12-02 00:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#custom-separator {
|
2020-12-17 17:55:51 +01:00
|
|
|
opacity: 0;
|
2021-02-05 17:55:24 +01:00
|
|
|
padding: 0px;
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
|
2020-12-11 00:30:28 +01:00
|
|
|
#workspaces {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
#workspaces button {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @text;
|
2021-02-19 11:18:04 +01:00
|
|
|
margin: 0;
|
2021-06-05 16:25:29 +02:00
|
|
|
padding: 0px 10px 0px 10px;
|
2021-06-01 21:18:26 +02:00
|
|
|
border-radius: 0px;
|
2020-12-11 00:30:28 +01:00
|
|
|
}
|
|
|
|
#workspaces button.focused {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @hilight;
|
2020-12-11 00:30:28 +01:00
|
|
|
}
|
|
|
|
|
2020-11-20 21:33:51 +01:00
|
|
|
#mode {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @warn;
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#disk.1,
|
2021-06-01 21:18:26 +02:00
|
|
|
#memory {
|
2021-02-05 17:55:24 +01:00
|
|
|
padding-right: 5px;
|
2020-11-20 21:33:51 +01:00
|
|
|
}
|
|
|
|
#disk.2,
|
2021-02-05 17:55:24 +01:00
|
|
|
#custom-swap,
|
|
|
|
#custom-auroch {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
2021-02-17 15:54:42 +01:00
|
|
|
#battery.warning,
|
2021-03-17 13:27:23 +01:00
|
|
|
#custom-covid.UP,
|
2021-02-17 15:54:42 +01:00
|
|
|
#cpu.warning,
|
2020-12-17 16:33:00 +01:00
|
|
|
#custom-updates.checking,
|
2021-02-17 15:54:42 +01:00
|
|
|
#custom-auroch.checking,
|
|
|
|
#disk.1.warning,
|
|
|
|
#disk.2.warning,
|
|
|
|
#memory.warning {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @warn;
|
2021-02-17 15:54:42 +01:00
|
|
|
}
|
2021-02-23 15:57:29 +01:00
|
|
|
|
2021-02-17 15:54:42 +01:00
|
|
|
#battery.critical,
|
|
|
|
#cpu.critical,
|
|
|
|
#custom-auroch.error,
|
2021-02-23 15:57:29 +01:00
|
|
|
#custom-updates.error,
|
2021-02-17 15:54:42 +01:00
|
|
|
#disk.1.critical,
|
|
|
|
#disk.2.critical,
|
|
|
|
#memory.critical {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @crit;
|
2020-12-17 16:33:00 +01:00
|
|
|
}
|
2021-02-17 15:54:42 +01:00
|
|
|
|
2021-02-23 15:57:29 +01:00
|
|
|
#custom-auroch.no-updates,
|
|
|
|
#custom-covid.DOWN,
|
|
|
|
#custom-updates.no-updates {
|
2021-03-18 12:46:27 +01:00
|
|
|
color: @text;
|
2020-12-07 22:34:52 +01:00
|
|
|
}
|
2020-12-14 11:48:41 +01:00
|
|
|
#custom-updates.updates,
|
2020-12-11 00:30:28 +01:00
|
|
|
#custom-auroch.updates {
|
2021-03-20 16:36:25 +01:00
|
|
|
color: @hilight;
|
2020-12-04 16:52:49 +01:00
|
|
|
}
|
2020-11-20 21:33:51 +01:00
|
|
|
|
2021-06-01 21:18:26 +02:00
|
|
|
/*#tray {
|
2021-05-12 14:48:41 +02:00
|
|
|
padding: 5px 3px 5px 3px;
|
2021-06-01 21:18:26 +02:00
|
|
|
}*/
|
2021-02-17 15:54:42 +01:00
|
|
|
|