From 01339a090c10f6da7455fa9ffa38c0d3fa9de47b Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 14 Aug 2024 14:35:18 -0700 Subject: [PATCH] fix(nix): add anti-aliasing Signed-off-by: Lucas Sta Maria --- nix/hosts/framework/home.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/hosts/framework/home.nix b/nix/hosts/framework/home.nix index 1315d3b..ef16e9a 100644 --- a/nix/hosts/framework/home.nix +++ b/nix/hosts/framework/home.nix @@ -89,7 +89,9 @@ in packages ++ emacsPackages ++ pythonPackages; xresources.properties = { - "Xft.hinting" = 1; + "Xft.antialias" = true; + "Xft.rgba" = "rgb"; # type of anti-aliasing + "Xft.hinting" = 1; # font hinting "Xft.hintstyle" = "hintslight"; };