ags: add another accent for chest

This commit is contained in:
2025-12-02 20:00:28 +03:00
parent 718d20da06
commit 80f25abdd5
2 changed files with 10 additions and 6 deletions
+8 -4
View File
@@ -1,17 +1,21 @@
{ stdenv, lib, config, colors, ... }:
{ stdenv, lib, config, colors, username, ... }:
stdenv.mkDerivation {
name = "AGS theme";
src = ./ags;
dontUnpack = true;
patchPhase = ''
patchPhase = let
accent = if username == "chest"
then colors.base0E
else colors.base0B;
in ''
echo \$bg: \#${colors.base00}\; > colors.scss
echo \$surface0: \#${colors.base02}\; >> colors.scss
echo \$fg: \#${colors.base05}\; >> colors.scss
echo \$accent: \#${colors.base0B}\; >> colors.scss
echo \$accent: \#${accent}\; >> colors.scss
echo \#${colors.base0B} > accent.css
echo \#${accent} > accent.css
'';
installPhase = ''