diff options
| -rw-r--r-- | config.h | 8 | ||||
| -rw-r--r-- | config.mk | 4 | 
2 files changed, 6 insertions, 6 deletions
@@ -8,16 +8,16 @@ static int centered = 1;                    /* -c option; centers dmenu on scree  static int min_width = 500;                    /* minimum width when centered */  /* -fn option overrides fonts[0]; default X11 font or font set */  static const char *fonts[] = { -	"UbuntuMono Nerd Font:size=15" +	"NotoSansMono Nerd Font:size=15"  };  static const char *prompt      = NULL;	/* -p  option; prompt to the left of input field */  static const char *colors[SchemeLast][2] = {  	/*     fg         bg       */  	[SchemeNorm] = { "#ebdbb2", "#1d2021" }, -	[SchemeSel] = { "#ebdbb2", "#6e0000" }, -	[SchemeSelHighlight] = { "#fabd2f", "#6e0000" }, +	[SchemeSel] = { "#ebdbb2", "#9d0006" }, +	[SchemeSelHighlight] = { "#fabd2f", "#9d0006" },  	[SchemeNormHighlight] = { "#fabd2f", "#1d2021" }, -	[SchemeOut] = { "#000000", "#00ffff" }, +	[SchemeOut] = { "#000000", "#9d0006" },  };  /* -l option; if nonzero, dmenu uses vertical list with given number of lines */  static unsigned int lines      = 5; @@ -14,7 +14,7 @@ XINERAMAFLAGS = -DXINERAMA  # freetype  FREETYPELIBS = -lfontconfig -lXft -FREETYPEINC = /usr/local/include/freetype2 +FREETYPEINC = /usr/include/freetype2  # OpenBSD (uncomment)  #FREETYPEINC = $(X11INC)/freetype2 @@ -24,7 +24,7 @@ LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) -lm  # flags  CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) -CFLAGS   = -std=c99 -pedantic -Wall -march=ivybridge -O3 -pipe $(INCS) $(CPPFLAGS) +CFLAGS   = -std=c99 -pedantic -Wall -march=alderlake -O3 -pipe $(INCS) $(CPPFLAGS)  LDFLAGS  = $(LIBS)  # compiler and linker  | 
