From 7189bae116dd9320412dbc24c2260f18a6e6498a Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Fri, 18 Jun 2021 19:23:57 -0400 Subject: [PATCH] Remove config.def.h --- .gitignore | 1 - Makefile | 7 ++----- config.def.h => config.h | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) rename config.def.h => config.h (93%) diff --git a/.gitignore b/.gitignore index ba7cfda..171483e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -config.h dmenu stest *.o \ No newline at end of file diff --git a/Makefile b/Makefile index a03a95c..b8e2298 100644 --- a/Makefile +++ b/Makefile @@ -17,10 +17,7 @@ options: .c.o: $(CC) -c $(CFLAGS) $< -config.h: - cp config.def.h $@ - -$(OBJ): arg.h config.h config.mk drw.h +$(OBJ): arg.h config.mk drw.h dmenu: dmenu.o drw.o util.o $(CC) -o $@ dmenu.o drw.o util.o $(LDFLAGS) @@ -33,7 +30,7 @@ clean: dist: clean mkdir -p dmenu-$(VERSION) - cp LICENSE Makefile README arg.h config.def.h config.mk dmenu.1\ + cp LICENSE Makefile README arg.h config.mk dmenu.1\ drw.h util.h dmenu_path dmenu_run stest.1 $(SRC)\ dmenu-$(VERSION) tar -cf dmenu-$(VERSION).tar dmenu-$(VERSION) diff --git a/config.def.h b/config.h similarity index 93% rename from config.def.h rename to config.h index 0103bda..cf0fe3b 100644 --- a/config.def.h +++ b/config.h @@ -5,7 +5,7 @@ static int topbar = 1; /* -b option; if 0, dmenu appears a static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=10" + "JetBrainsMono Medium NF:pixelsize=14:antialias=true:autohint=true" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { -- 2.39.2