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:
+13
-13
@@ -3,7 +3,7 @@
|
||||
/* gtklock style - Tomorrow Night theme */
|
||||
|
||||
window {
|
||||
background-color: var(--tn-bg);
|
||||
background-color: @tn-bg;
|
||||
}
|
||||
|
||||
#body {
|
||||
@@ -11,7 +11,7 @@ window {
|
||||
}
|
||||
|
||||
#clock-label {
|
||||
color: var(--tn-fg);
|
||||
color: @tn-fg;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 48px;
|
||||
font-weight: bold;
|
||||
@@ -19,14 +19,14 @@ window {
|
||||
}
|
||||
|
||||
#date-label {
|
||||
color: var(--tn-fg-dim);
|
||||
color: @tn-fg-dim;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 16px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
#username-label {
|
||||
color: var(--tn-fg);
|
||||
color: @tn-fg;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
@@ -34,10 +34,10 @@ window {
|
||||
}
|
||||
|
||||
#input-box {
|
||||
background-color: var(--tn-bg-alt);
|
||||
border: 2px solid var(--tn-bg-high);
|
||||
background-color: @tn-bg-alt;
|
||||
border: 2px solid @tn-bg-high;
|
||||
border-radius: 6px;
|
||||
color: var(--tn-fg);
|
||||
color: @tn-fg;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 14px;
|
||||
padding: 8px 12px;
|
||||
@@ -45,21 +45,21 @@ window {
|
||||
}
|
||||
|
||||
#input-box:focus {
|
||||
border-color: var(--tn-blue);
|
||||
border-color: @tn-blue;
|
||||
}
|
||||
|
||||
#error-label {
|
||||
color: var(--tn-red);
|
||||
color: @tn-red;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 13px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
#unlock-button {
|
||||
background-color: var(--tn-bg-high);
|
||||
background-color: @tn-bg-high;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
color: var(--tn-fg);
|
||||
color: @tn-fg;
|
||||
font-family: "JetBrainsMono Nerd Font";
|
||||
font-size: 14px;
|
||||
padding: 8px 20px;
|
||||
@@ -67,6 +67,6 @@ window {
|
||||
}
|
||||
|
||||
#unlock-button:hover {
|
||||
background-color: var(--tn-blue);
|
||||
color: var(--tn-bg);
|
||||
background-color: @tn-blue;
|
||||
color: @tn-bg;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user