From 748d5bd4796e4e30d26a6d5e43bdb9fe3e377e4f Mon Sep 17 00:00:00 2001
From: Luca Bilke <bilke@tralios.de>
Date: Tue, 21 Feb 2023 23:24:53 +0100
Subject: [PATCH] font/lib changes

---
 config.h  | 4 +++-
 config.mk | 4 ++--
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/config.h b/config.h
index 15a1dd3..a5153b4 100644
--- a/config.h
+++ b/config.h
@@ -6,7 +6,9 @@ static const unsigned int fgalpha = 0xffU;
 static const unsigned int bgalpha = 0xffU;
 /* -fn option overrides fonts[0]; default X11 font or font set */
 static const char *fonts[] = {
-	"monospace:size=10:antialias=true"
+    "NotoSans Nerd Font:size=10:antialias=true",
+    "Noto Color Emoji:size=10:antialias=true",
+    "FontAwesome:size=10"
 };
 static const char *prompt      = NULL;      /* -p  option; prompt to the left of input field */
 static const char *colors[SchemeLast][2] = {
diff --git a/config.mk b/config.mk
index f1ce67d..42107ba 100644
--- a/config.mk
+++ b/config.mk
@@ -5,8 +5,8 @@ VERSION = 5.2
 PREFIX = /usr/local
 MANPREFIX = $(PREFIX)/share/man
 
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
+X11INC = /usr/include/X11
+X11LIB = /usr/lib/X11
 
 # Xinerama, comment if you don't want it
 XINERAMALIBS  = -lXinerama