7ab5116e5d
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>
59 lines
783 B
CSS
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;
|
|
}
|