b0daea2a73
- theme/colors.css: replace CSS custom properties (--var) with GTK3 @define-color — GTK3 CSS parser rejects -- syntax, crashing waybar - waybar/style.css, wofi/style.css, gtklock/style.css: update var(--x) references to @x to match - waybar/config.jsonc: pin clock timezone to America/Vancouver - niri/config.kdl: change Print to Mod+Print for screenshot keybind Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
59 lines
776 B
CSS
59 lines
776 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;
|
|
}
|
|
|
|
#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;
|
|
}
|