parent
9407b42f97
commit
7cc36b7703
|
@ -69,10 +69,17 @@ in
|
|||
};
|
||||
|
||||
config = mkIf (cfg.properties != null || cfg.extraConfig != "") {
|
||||
home.file.".Xresources".text =
|
||||
concatStringsSep "\n" ([]
|
||||
++ (optional (cfg.extraConfig != "") cfg.extraConfig)
|
||||
++ (optionals (cfg.properties != null) (mapAttrsToList formatLine cfg.properties))
|
||||
) + "\n";
|
||||
home.file.".Xresources" = {
|
||||
text =
|
||||
concatStringsSep "\n" ([]
|
||||
++ (optional (cfg.extraConfig != "") cfg.extraConfig)
|
||||
++ (optionals (cfg.properties != null) (mapAttrsToList formatLine cfg.properties))
|
||||
) + "\n";
|
||||
onChange = ''
|
||||
if [[ -v DISPLAY ]] ; then
|
||||
$DRY_RUN_CMD ${pkgs.xorg.xrdb}/bin/xrdb -merge $HOME/.Xresources
|
||||
fi
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue