diff options
Diffstat (limited to 'waybar/style.css')
| -rw-r--r-- | waybar/style.css | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/waybar/style.css b/waybar/style.css new file mode 100644 index 0000000..c92fd57 --- /dev/null +++ b/waybar/style.css @@ -0,0 +1,106 @@ +* { + /* `otf-font-awesome` is required to be installed for icons */ + font-family: Iosevka Term; + font-size: 13px; +} + +window#waybar { + background-color: #1c1c1c; + color: #ffffff; + border-bottom: 3px solid #4d4d4d; + transition-property: background-color; + transition-duration: .5s; +} + +window#waybar.hidden { + opacity: 0.2; +} + + +button { + /* Use box-shadow instead of border so the text isn't offset */ + box-shadow: inset 0 -3px transparent; + /* Avoid rounded borders under each button name */ + border: none; + border-radius: 0; +} + +/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */ + +#workspaces button { + padding: 0 5px; + background-color: transparent; + color: #ffffff; +} + +#workspaces button:hover { + background: rgba(0, 0, 0, 0.2); +} + +#workspaces button.focused { + background-color: #4d4d4d; +} + +#workspaces button.urgent { + background-color: #eb4d4b; +} + +#mode { + font-style: italic; + background-color: #4d4d4d; +} + +#clock, +#battery, +#cpu, +#memory, +#disk, +#temperature, +#backlight, +#network, +#pulseaudio, +#wireplumber, +#custom-media, +#tray, +#mode, +#idle_inhibitor, +#scratchpad, +#mpd { + padding: 0 10px; + color: #ffffff; +} + +#window, +#workspaces { + margin: 0 4px; +} + +/* If workspaces is the leftmost module, omit left margin */ +.modules-left > widget:first-child > #workspaces { + margin-left: 0; +} + +/* If workspaces is the rightmost module, omit right margin */ +.modules-right > widget:last-child > #workspaces { + margin-right: 0; +} + +@keyframes blink { + to { + background-color: #ffffff; + color: #000000; + } +} + +label:focus { + background-color: #000000; +} + +#custom-media { + min-width: 100px; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + |
