Compare commits

..

3 commits

Author SHA1 Message Date
535f713c79 dwm: stem darkening? 2024-11-20 06:37:02 -08:00
3c87abea9d dwm: .Xresources file 2024-11-20 06:32:39 -08:00
2e704b22f8 dwm: load xresources on boot 2024-11-20 06:28:17 -08:00
2 changed files with 14 additions and 0 deletions

View file

@ -92,6 +92,8 @@ in
partOf = [ "graphical-session.target" ];
};
environment.variables.FREETYPE_PROPERTIES = "cff:no-stem-darkening=0 autofitter:no-stem-darkening=0";
environment.systemPackages = with pkgs; [
dmenu
xclip

View file

@ -28,6 +28,18 @@ in
--jitter ${toString (cfg.threshold - 1)} \
${lib.concatStrings cfg.extraOptions}
'';
home.file.".xinitrc".text = ''
[ -f ~/.Xresources ] && ${lib.getExe pkgs.xorg.xrdb} -merge ~/.Xresources
'';
xresources.properties = {
"Xft.lcdfilter" = "lcddefault";
"Xft.hintstyle" = "hintslight";
"Xft.hinting" = "1";
"Xft.antialias" = "1";
"Xft.rgba" = "none";
};
};
}