diff options
| author | Baitinq <[email protected]> | 2022-09-11 17:40:08 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-14 22:20:52 +0200 |
| commit | 004d54e9fe6880edabcf18cb0ae7c9a86bb28e85 (patch) | |
| tree | 133e4748410224ffe2f0db4016a36da633a073dd /dotfiles/waybar/style.css | |
| parent | Xlock: Respect dpms off screen (diff) | |
| download | nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.tar.gz nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.tar.bz2 nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.zip | |
Implement initial wayland support
Diffstat (limited to 'dotfiles/waybar/style.css')
| -rw-r--r-- | dotfiles/waybar/style.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dotfiles/waybar/style.css b/dotfiles/waybar/style.css new file mode 100644 index 0000000..fe01a14 --- /dev/null +++ b/dotfiles/waybar/style.css @@ -0,0 +1,58 @@ +* { + font-size: 12px; + font-family: JetBrainsMono; + border: none; + border-radius: 0; +} + +window#waybar { + background: #222222; + color: #bbbbbb; +} + +#clock, +#battery, +#backlight, +#pulseaudio { + padding: 0 10px; + margin: 0 4px; +} + +#window, +#tags { + padding: 0 0; + margin: 0 0; +} + +#tags button { + padding: 0 7px; + margin: 0; + color: #bbbbbb; +} + +#tags button.occupied { + border-top: 4px solid #bbbbbb; + margin: 0; + padding: 0 7px; +} + +#tags button.focused { + border-top: 0; + margin: 0; + padding: 0 7px; + color: #222222; + background: #bbbbbb; +} + +#tags button:hover { + background: inherit; + color: inherit; + box-shadow: inherit; + text-shadow: inherit; +} + +#battery.critical:not(.charging) { + background-color: darkred; + color: #ffffff; +} + |