Files
dotfiles/waybar/style.css
T
funman300 7ab5116e5d waybar: work around DST bug in built-in clock module
waybar 0.15.0's clock module reads PST instead of PDT, showing time
an hour behind. Replace with custom/exec calling date directly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-29 10:18:55 -07:00

59 lines
783 B
CSS

@import url("../theme/colors.css");
* {
font-family: JetBrainsMono Nerd Font;
font-size: 13px;
}
window#waybar {
background: @tn-bg-a90;
color: @tn-fg;
}
#workspaces button {
padding: 0 8px;
color: @tn-fg-muted;
}
#workspaces button.focused {
color: @tn-blue;
}
#custom-clock, #battery, #network, #pulseaudio,
#cpu, #temperature,
#custom-power-profile, #custom-fan-profile {
padding: 0 12px;
}
#custom-power-profile.performance {
color: @tn-yellow;
}
#custom-power-profile.power-saver {
color: @tn-green;
}
#battery.warning {
color: @tn-yellow;
}
#battery.critical {
color: @tn-red;
}
#cpu.warning {
color: @tn-yellow;
}
#cpu.critical {
color: @tn-red;
}
#temperature.warm {
color: @tn-yellow;
}
#temperature.critical {
color: @tn-red;
}