diff options
author | 2025-06-03 14:02:17 -0400 | |
---|---|---|
committer | 2025-06-03 14:02:17 -0400 | |
commit | eb1fa89c2d0dafa21181ccbb6d79b8f8f90b6fc8 (patch) | |
tree | 3cf194f8ab61e761ad656d4e3f6a724bd1014daf /.config/waybar/style.css | |
download | dotfiles-master.tar.gz dotfiles-master.zip |
Diffstat (limited to '.config/waybar/style.css')
-rw-r--r-- | .config/waybar/style.css | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/.config/waybar/style.css b/.config/waybar/style.css new file mode 100644 index 0000000..3eb0e90 --- /dev/null +++ b/.config/waybar/style.css @@ -0,0 +1,121 @@ +* { + border: none; + border-radius: 0; + font-family: "monospace"; + font-size: 12px; + min-height: 0; + margin: 0px; +} + +window#waybar { + /*background: #000000;*/ + background: rgba(0, 0, 0, 0.7); + color: gray; + color: #ffffff; +} + +#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, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode { + 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 { +} |