From 564e598aab4043edb38fb57df99970b7111230a4 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Tue, 21 Feb 2023 23:25:44 +0100 Subject: [PATCH] font + lib changes --- config.h | 13 +++++++------ config.mk | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/config.h b/config.h index 4a3eb60..2f055da 100644 --- a/config.h +++ b/config.h @@ -10,12 +10,13 @@ static int min_lineheight = 8; static const char *asterisk = ""; static const char *fonts[] = { - "NotoSans Nerd Font:style=Regular:pixelsize=14:antialias=true" + "NotoSans Nerd Font:size=10:antialias=true", + "Noto Color Emoji:size=10:antialias=true", + "FontAwesome:size=10" }; static const char *prompt = ""; static const char *colors[SchemeLast][4] = { - [SchemePrompt] = { "#c0caf5", "#15161E" }, - [SchemeNormal] = { "#c0caf5", "#15161E" }, - [SchemeSelect] = { "#15161E", "#7aa2f7" }, - [SchemeDesc] = { "#a9b1d6", "#15161E" } -}; + [SchemePrompt] = {"#7aa2f7", "#15161E"}, + [SchemeNormal] = {"#7aa2f7", "#15161E"}, + [SchemeSelect] = {"#15161E", "#7aa2f7"}, + [SchemeDesc] = {"#7aa2f7", "#15161E"}}; diff --git a/config.mk b/config.mk index 4c71211..0d6d8b9 100644 --- a/config.mk +++ b/config.mk @@ -7,8 +7,8 @@ BUGREPORT = https:\/\/github.com\/ritze\/pinentry-dmenu 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