waybar: fix GTK3 CSS variables, pin timezone, adjust screenshot keybind

- 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>
This commit is contained in:
funman300
2026-04-28 11:38:48 -07:00
parent d923cfb5cf
commit b0daea2a73
6 changed files with 55 additions and 56 deletions
+16 -18
View File
@@ -1,22 +1,20 @@
/* Tomorrow Night - shared color palette */
/* @import this file from waybar, wofi, gtklock CSS */
* {
--tn-bg: #1d1f21;
--tn-bg-alt: #282a2e;
--tn-bg-high: #373b41;
--tn-fg: #c5c8c6;
--tn-fg-dim: #969896;
--tn-fg-muted: #707880;
--tn-blue: #81a2be;
--tn-green: #b5bd68;
--tn-yellow: #f0c674;
--tn-red: #cc6666;
--tn-magenta: #b294bb;
--tn-cyan: #8abeb7;
@define-color tn-bg #1d1f21;
@define-color tn-bg-alt #282a2e;
@define-color tn-bg-high #373b41;
@define-color tn-fg #c5c8c6;
@define-color tn-fg-dim #969896;
@define-color tn-fg-muted #707880;
@define-color tn-blue #81a2be;
@define-color tn-green #b5bd68;
@define-color tn-yellow #f0c674;
@define-color tn-red #cc6666;
@define-color tn-magenta #b294bb;
@define-color tn-cyan #8abeb7;
/* Alpha variants */
--tn-bg-a90: rgba(29, 31, 33, 0.90);
--tn-bg-a95: rgba(29, 31, 33, 0.95);
--tn-bg-a96: rgba(29, 31, 33, 0.96);
}
/* Alpha variants */
@define-color tn-bg-a90 rgba(29, 31, 33, 0.90);
@define-color tn-bg-a95 rgba(29, 31, 33, 0.95);
@define-color tn-bg-a96 rgba(29, 31, 33, 0.96);