font/lib changes

This commit is contained in:
Luca Bilke 2023-02-21 23:24:53 +01:00
parent cabef8bdf8
commit 748d5bd479
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
2 changed files with 5 additions and 3 deletions

View File

@ -6,7 +6,9 @@ static const unsigned int fgalpha = 0xffU;
static const unsigned int bgalpha = 0xffU; static const unsigned int bgalpha = 0xffU;
/* -fn option overrides fonts[0]; default X11 font or font set */ /* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = { 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 *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = { static const char *colors[SchemeLast][2] = {

View File

@ -5,8 +5,8 @@ VERSION = 5.2
PREFIX = /usr/local PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man MANPREFIX = $(PREFIX)/share/man
X11INC = /usr/X11R6/include X11INC = /usr/include/X11
X11LIB = /usr/X11R6/lib X11LIB = /usr/lib/X11
# Xinerama, comment if you don't want it # Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama XINERAMALIBS = -lXinerama