From 9c45b2c9a7e820bc670d37f40667d50cf8464bc4 Mon Sep 17 00:00:00 2001 From: tuxwarrior Date: Tue, 30 Apr 2024 22:25:24 -0500 Subject: [PATCH] + styles.css for waybar --- dots/waybar/styles.css | 124 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 dots/waybar/styles.css diff --git a/dots/waybar/styles.css b/dots/waybar/styles.css new file mode 100644 index 0000000..a00ed50 --- /dev/null +++ b/dots/waybar/styles.css @@ -0,0 +1,124 @@ +/* +https://gist.github.com/genofire/07234e810fcd16f9077710d4303f9a9e +*/ + +* { + border: none; + border-radius: 0; + font-family: "monospace"; + font-size: 9px; + min-height: 0; + margin: 0px; +} + +window#waybar { + background: rgba(0, 0, 0, 0.7); + color: rgba(255, 0, 200, 1); +} + +#window { + color: #e4e4e4; + font-weight: bold; +} + +#workspaces { + padding: 0px; + margin: 0px; +} + +#workspaces button { + padding: 0 2px; + margin: 0px; + background: transparent; + color: #ff8700; + /* + color: #00afd7; + color: #ffffff; + border: 1px solid #00afd7; + */ + border: 1px solid #1b1d1e; + font-weight: bold; +} +#workspaces button:hover { + box-shadow: inherit; + text-shadow: inherit; +} + +#workspaces button.focused { + background: #e88939; + background: #00afd7; + color: #1b1d1e; +} + +#workspaces button.urgent { + background: #af005f; + color: #1b1d1e; +} + +#mode { + background: #af005f; + color: #1b1d1e; +} +#clock, #battery, #clock, #cpu, #disk, #idle_inhibitor, #memory, #network, #pulseaudio, #temperature { + padding: 0 3px; + margin: 0 2px; +} + +#clock { +} + +#battery { +} + +#battery icon { + color: red; +} + +#battery.charging { +} + +@keyframes blink { + to { + background-color: #af005f; + } +} + +#battery.warning:not(.charging) { + background-color: #ff8700; + color: #1b1d1e; +} +#battery.critical:not(.charging) { + color: white; + animation-name: blink; + animation-duration: 0.5s; + animation-timing-function: linear; + animation-iteration-count: infinite; + animation-direction: alternate; +} + +#cpu { +} + +#memory { +} + +#network { +} + +#network.disconnected { + background: #f53c3c; +} + +#pulseaudio { +} + +#pulseaudio.muted { +} + +#custom-spotify { + color: rgb(102, 220, 105); +} + +#tray { +} +