From 8dd93b5d005676a2d57d2ebda94a1012f09fcb12 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 1 Aug 2024 12:43:14 +0200 Subject: config(fontutils): enable full font antialiasing --- suweren/home/services/fontutils.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'suweren/home') diff --git a/suweren/home/services/fontutils.scm b/suweren/home/services/fontutils.scm index d6c30fc..661667b 100644 --- a/suweren/home/services/fontutils.scm +++ b/suweren/home/services/fontutils.scm @@ -1,26 +1,28 @@ (define-module (suweren home services fontutils) - ;; suweren-home-fontconfig-service-type [ home-fontconfig-service-type ] + ;; suweren-home-fontconfig-service-type + #:use-module (gnu home services fontutils) - ;; suweren-home-fontconfig-service-type [ simple-service ] + + ;; suweren-home-fontconfig-service-type #:use-module (gnu services)) (define-public suweren-home-fontconfig-service-type (let* ((antialias '(match (@ (target "font")) (edit (@ (mode "assign") (name "antialias")) - (bool "false")))) + (bool "true")))) (hinting '(match (@ (target "font")) (edit (@ (mode "assign") (name "hinting")) - (bool "false")))) + (bool "true")))) (hintstyle '(match (@ (target "font")) (edit (@ (mode "assign") (name "hintstyle")) - (const "hintnone")))) + (const "hintfull")))) (rgba '(match (@ (target "font")) (edit (@ (mode "assign") (name "rgba")) - (const "none")))) + (const "rgb")))) ;; TODO sxml -> (sxml) (rules (list antialias -- cgit v1.2.3