style(tazjin/dotfiles): more authentic win95 waybar styling

Brings this a LOT closer to the Windows95 style theming that I'm trying to
achieve with the whole thing.

Change-Id: Ifb457a682cb83a78e4a8e2ba2bb4a5b96f3eaf1f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12525
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2024-09-27 00:12:57 +03:00 committed by tazjin
parent d0344a0e27
commit ed2bd88850
3 changed files with 154 additions and 74 deletions

View file

@ -7,36 +7,40 @@ in
mainBar = {
layer = "top";
position = "bottom";
modules-left = [ "image#start" "custom/start" ];
"image#start" = {
path = "${depot.third_party.chicago95}/share/icons/Chicago95/panel/24/start-here.png";
size = 24;
on-click = "xfce4-appfinder --disable-server";
};
modules-left = [ "custom/start" ];
"custom/start" = {
format = " Start";
on-click = "xfce4-appfinder --disable-server";
};
modules-right = [ "pulseaudio" "backlight" "battery" "tray" "clock" ];
modules-right = [ "tray" "backlight" "battery" "pulseaudio" "clock" ];
pulseaudio = {
on-click = "pavucontrol";
# Font "Awesome" speaker icons can't be made to render, I don't care why, emoji time.
format = "{volume}% 🎧";
format-muted = "{volume}% ";
format = " "; #styling only
states = {
low = 1;
medium = 40;
high = 75;
};
};
battery = {
format = "{capacity}% {icon}";
format-icons = [ "" "" "" "" "" ];
format = " "; # styling only
interval = 10;
states = {
full = 100;
good = 85;
medium = 60;
low = 40;
warning = 20;
critical = 10;
};
};
backlight = {
format = "{percent}% {icon}";
format-icons = [ "" ];
format = "{percent}%"; # styling only
on-scroll-up = "light -A 1";
on-scroll-down = "light -U 1";
};