Tweaked waybar styling

This commit is contained in:
vorboyvo 2024-02-09 14:42:30 -05:00
parent b2fcba019a
commit d464c17af4

View file

@ -23,6 +23,8 @@ in
on-click = "exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; on-click = "exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
on-click-right = "exec wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"; on-click-right = "exec wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle";
on-click-middle = "exec pavucontrol"; on-click-middle = "exec pavucontrol";
on-scroll-up = null;
on-scroll-down = null;
}; };
network = { network = {
format-wifi = "{essid} ({signalStrength}%) "; format-wifi = "{essid} ({signalStrength}%) ";
@ -78,34 +80,40 @@ in
* { * {
font-family: FontAwesome, Red Hat Display, sans-serif; font-family: FontAwesome, Red Hat Display, sans-serif;
font-size: 12pt; font-size: 12pt;
min-height: 19pt; min-height: 20pt;
} }
'' + '' +
'' ''
window#waybar { window#waybar {
background: rgba(43, 48, 59, 0.9); background: rgba(34, 34, 34, 1);
color: white; color: white;
} }
'' + '' +
'' ''
#workspaces button { #workspaces button {
padding: 0 3px; padding: 0 3px;
background: rgba(34, 34, 34, 1); background: rgba(34, 34, 34, 1);
border-radius: 0; border-style: hidden;
color: white; border-radius: 0;
} color: white;
}
'' + '' +
'' ''
#workspaces button.focused { #workspaces button.focused {
background: rgba(40, 85, 119, 1); background: rgba(40, 85, 119, 1);
} }
.modules-right label, .modules-right label,
.modules-right box { .modules-right box {
border-left: 1px solid black; border-left: 1px solid #d3d3d3;
padding-left: 5px; padding-left: 5px;
padding-right: 5px; padding-right: 5px;
} }
'' +
''
#battery.warning:not(.charging) {
background: rgba(140, 0, 0, 1);
}
'' + '' +
""; "";
} }