Regenerated

This commit is contained in:
2026-04-27 20:33:25 +02:00
parent feed32000f
commit 5d1ce337b1
5 changed files with 410 additions and 425 deletions
+388 -393
View File
File diff suppressed because it is too large Load Diff
+8 -13
View File
@@ -254,6 +254,7 @@ Setting the colors for Droidnix.
{ lib, config, pkgs, repoPath, ... }: { lib, config, pkgs, repoPath, ... }:
let let
colors = { colors = {
border = "#97C9E6"
crust = "#11111b"; crust = "#11111b";
mantle = "#181825"; mantle = "#181825";
base = "#1e1e2e"; base = "#1e1e2e";
@@ -1348,7 +1349,6 @@ in
".config/waybar/style-dark.css".source = ".config/waybar/style-dark.css".source =
link "${waybarPath}/style-dark.css"; link "${waybarPath}/style-dark.css";
/* /*
# --- Scripts (DO NOT use builtins.readFile here)
".config/scripts/bluetooth-status.sh".source = ".config/scripts/bluetooth-status.sh".source =
link "${basePath}/scripts/bluetooth-status.sh"; link "${basePath}/scripts/bluetooth-status.sh";
@@ -5016,35 +5016,30 @@ window#waybar {
color: @text; color: @text;
font-weight: bold; font-weight: bold;
border-radius: 30px; border-radius: 30px;
/* --- Option 1 transparent
/* --- Option 1 Green blue filled
background: background:
linear-gradient(transparent, transparent) padding-box, linear-gradient(transparent, transparent) padding-box,
linear-gradient(45deg, @blue, @green) border-box; linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent; border: 2px solid transparent;
--- */ --- */
/* --- Option 2 filled /* --- Option 2 default background green blue border
background: background:
linear-gradient(@base, @base) padding-box, linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box; linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent; border: 2px solid transparent;
*/ */
/* --- Option 3 base background border gradient */ /* --- Option 3 NO background, no border */
background:
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
/* --- Option 4 NONE
background: transparent; background: transparent;
border: 2px solid transparent; border: 2px solid transparent;
--- */
/* --- Option 5 Solid border /* --- Option 5 Solid border
background: transparent; background: transparent;
border: 2px solid transparent; border: 2px solid @border;
-- */ --- */
margin: 0px 3px; margin: 0px 3px;
padding: 1px 4px; padding: 1px 4px;
@@ -39,35 +39,30 @@ window#waybar {
color: @text; color: @text;
font-weight: bold; font-weight: bold;
border-radius: 30px; border-radius: 30px;
/* --- Option 1 transparent
/* --- Option 1 Green blue filled
background: background:
linear-gradient(transparent, transparent) padding-box, linear-gradient(transparent, transparent) padding-box,
linear-gradient(45deg, @blue, @green) border-box; linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent; border: 2px solid transparent;
--- */ --- */
/* --- Option 2 filled /* --- Option 2 default background green blue border
background: background:
linear-gradient(@base, @base) padding-box, linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box; linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent; border: 2px solid transparent;
*/ */
/* --- Option 3 base background border gradient */ /* --- Option 3 NO background, no border */
background:
linear-gradient(@base, @base) padding-box,
linear-gradient(45deg, @blue, @green) border-box;
border: 2px solid transparent;
/* --- Option 4 NONE
background: transparent; background: transparent;
border: 2px solid transparent; border: 2px solid transparent;
--- */
/* --- Option 5 Solid border /* --- Option 5 Solid border
background: transparent; background: transparent;
border: 2px solid transparent; border: 2px solid @border;
-- */ --- */
margin: 0px 3px; margin: 0px 3px;
padding: 1px 4px; padding: 1px 4px;
@@ -23,7 +23,6 @@ in
".config/waybar/style-dark.css".source = ".config/waybar/style-dark.css".source =
link "${waybarPath}/style-dark.css"; link "${waybarPath}/style-dark.css";
/* /*
# --- Scripts (DO NOT use builtins.readFile here)
".config/scripts/bluetooth-status.sh".source = ".config/scripts/bluetooth-status.sh".source =
link "${basePath}/scripts/bluetooth-status.sh"; link "${basePath}/scripts/bluetooth-status.sh";
@@ -2,6 +2,7 @@
{ lib, config, pkgs, repoPath, ... }: { lib, config, pkgs, repoPath, ... }:
let let
colors = { colors = {
border = "#97C9E6"
crust = "#11111b"; crust = "#11111b";
mantle = "#181825"; mantle = "#181825";
base = "#1e1e2e"; base = "#1e1e2e";