All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

hjem-ctp: remove redundant wleave icons

+3 -20
+3 -20
modules/hjem-ctp/wleave.nix
··· 15 15 rev = "b690cee13b944890e43a5fb629ccdff86cffbbb3"; 16 16 hash = "sha256-QUSDx5M+BG7YqI4MBsOKFPxvZHQtCa8ibT0Ln4FPQ7I="; 17 17 }; 18 - 19 - # Generate the CSS required to override all icons 20 - # with their Catppuccin-ified counterparts 21 - iconsCss = 22 - lib.concatMapStrings 23 - (btn: '' 24 - #${btn} { background-image: url("${src}/icons/wleave/${cfg.flavor}/${cfg.accent}/${btn}.svg"); } 25 - '') 26 - [ 27 - "lock" 28 - "logout" 29 - "suspend" 30 - "hibernate" 31 - "shutdown" 32 - "reboot" 33 - ]; 34 18 in 35 19 { 36 20 options.ctp.wleave = ctp-lib.mkCatppuccinOptions "wleave" { ··· 38 22 }; 39 23 40 24 config = lib.mkIf cfg.enable { 41 - xdg.config.files."wleave/style.css".source = pkgs.concatText "wleave-style.css" [ 42 - "${src}/themes/${cfg.flavor}/${cfg.accent}.css" 43 - (pkgs.writeText "wleave-icons.css" iconsCss) 44 - ]; 25 + xdg.config.files = { 26 + "wleave/style.css".source = "${src}/themes/${cfg.flavor}/${cfg.accent}.css"; 27 + }; 45 28 }; 46 29 }