From 3c87abea9da3bd14ad17062f2491df9bd6e575f2 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 20 Nov 2024 06:28:14 -0800 Subject: [PATCH] dwm: .Xresources file --- modules/home/dwm.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/home/dwm.nix b/modules/home/dwm.nix index d5fffee..31b5a31 100644 --- a/modules/home/dwm.nix +++ b/modules/home/dwm.nix @@ -32,6 +32,14 @@ in 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"; + }; }; }