diff options
author | polwex <polwex@sortug.com> | 2024-09-24 00:34:12 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-24 00:34:12 +0700 |
commit | fbc1e58635cdf7356a4c6b43c0b6a0df7578dbfb (patch) | |
tree | ff302b9ba1880cccc150d2db2a19ecb42a1f386d /hosts/local/fw11/waybarstyle.css | |
parent | a6109558c4b246bbe71f6e949f92f427116eb033 (diff) |
m
Diffstat (limited to 'hosts/local/fw11/waybarstyle.css')
-rw-r--r-- | hosts/local/fw11/waybarstyle.css | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/hosts/local/fw11/waybarstyle.css b/hosts/local/fw11/waybarstyle.css new file mode 100644 index 0000000..97e65e2 --- /dev/null +++ b/hosts/local/fw11/waybarstyle.css @@ -0,0 +1,103 @@ +* { + border: none; + border-radius: 0; + font-family: "Ubuntu Nerd Font"; + font-size: 13px; + min-height: 0; +} + +window#waybar { + background: transparent; + color: white; +} + +#window { + margin-left: 1rem; + font-weight: bold; + font-family: "Ubuntu"; +} +/* +#workspaces { + padding: 0 5px; +} +*/ + +#workspaces button { + padding: 0 5px; + background: transparent; + color: white; + border-top: 2px solid transparent; +} + +#workspaces button.focused { + color: #c9545d; + border-top: 2px solid #c9545d; +} + +#mode { + background: #64727D; + border-bottom: 3px solid white; +} + +#bluetooth, #idle_inhibitor, #temperature, #backlight, #clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode { + padding: 5px; + margin: 2px; + border-radius: 3rem; + background-color: rgb(10, 10, 10); +} + +#clock { + font-weight: bold; +} + +#battery { +} + +#battery icon { + color: red; +} + +#battery.charging { +} + +@keyframes blink { + to { + background-color: #ffffff; + color: black; + } +} + +#battery.warning: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 { +} |