From d7ef0fe7c807c7302f3fa4d29aa1d840bc0293fb Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 15 Jul 2024 00:50:29 +0300 Subject: [PATCH] lib/X11/xterm: Update fonts --- lib/X11/xterm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/X11/xterm b/lib/X11/xterm index 8931009..589b6f6 100644 --- a/lib/X11/xterm +++ b/lib/X11/xterm @@ -1,7 +1,10 @@ ! ! XTerm ! -#if WIDTH > 640 +#if WIDTH > 1900 +! 1920x1080 +# define XTERM_GEOMETRY 80x32 +#elif WIDTH > 1024 # define XTERM_GEOMETRY 80x30 #else ! 640x480 @@ -378,13 +381,13 @@ Rxvt*color7 : lightgrey Rxvt*color15 : white #if WIDTH > 1600 -# define XFT_FONT xft:Monospace:size=18 +# define XFT_FONT xft:Liberation Mono:size=18 #elif WIDTH > 1200 -# define XFT_FONT xft:Monospace:size=16 +# define XFT_FONT xft:Liberation Mono:size=16 #elif WIDTH > 800 -# define XFT_FONT xft:Monospace:size=14 +# define XFT_FONT xft:Liberation Mono:size=14 #else -# define XFT_FONT xft:Monospace:size=12 +# define XFT_FONT xft:Liberation Mono:size=12 #endif URxvt*termName: rxvt -- 2.39.5