font + lib changes
This commit is contained in:
parent
960a606ff2
commit
564e598aab
13
config.h
13
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"}};
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in New Issue