From 755c8511a7cdd05b8acd0be9fac4d4e93dfa95ea Mon Sep 17 00:00:00 2001 From: Andreev Gregory <1@example.com> Date: Mon, 3 Mar 2025 22:19:41 +0300 Subject: [PATCH] Configured absolutely everything --- Makefile | 5 +---- config.def.h | 18 +++++++++--------- dmenu.c | 2 +- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 6fd30e6..5a5285b 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,7 @@ all: dmenu stest .c.o: $(CC) -c $(CFLAGS) $< -config.h: - cp config.def.h $@ - -$(OBJ): arg.h config.h config.mk drw.h +$(OBJ): arg.h config.def.h config.mk drw.h dmenu: dmenu.o drw.o util.o $(CC) -o $@ dmenu.o drw.o util.o $(LDFLAGS) diff --git a/config.def.h b/config.def.h index f167aa6..79e7361 100644 --- a/config.def.h +++ b/config.def.h @@ -2,23 +2,23 @@ /* Default settings; can be overriden by command line. */ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ -static const unsigned int alpha = 0xe2; /* Amount of opacity. 0xff is opaque */ +static const unsigned int alpha = 0xe3; /* Amount of opacity. 0xff is opaque */ static int centered = 1; /* -c option; centers dmenu on screen */ -static int min_width = 500; /* minimum width when centered */ +static int min_width = 1000; /* minimum width when centered */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=18", - "Noto Color Emoji:size=18" + "monospace:size=17", + "Noto Color Emoji:size=17" }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#005577" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeNorm] = { "#dddddd", "#222222" }, + [SchemeSel] = { "#ffffff", "#ff0000" }, + [SchemeOut] = { "#000000", "#bc3d2f" }, [SchemeCaret] = { "#fe5e5e", "#222222" }, - [SchemeBorder] = { "#cccccc", "#ffffff" }, + [SchemeBorder] = { "#dc0000", NULL }, }; /* -l and -g options; controls number of lines and columns in grid if > 0 */ @@ -30,7 +30,7 @@ static const unsigned int alphas[SchemeLast][2] = { [SchemeSel] = { OPAQUE, alpha }, [SchemeOut] = { OPAQUE, alpha }, [SchemeCaret] = { OPAQUE, OPAQUE }, - [SchemeBorder] = { OPAQUE, 0xf2 }, + [SchemeBorder] = { 0xf2, 0xf2 }, }; /* diff --git a/dmenu.c b/dmenu.c index e3cbbd3..bd55ca4 100644 --- a/dmenu.c +++ b/dmenu.c @@ -62,7 +62,7 @@ static Visual *visual; static int depth; static Colormap cmap; -#include "config.h" +#include "config.def.h" static int (*fstrncmp)(const char *, const char *, size_t) = strncmp; static char *(*fstrstr)(const char *, const char *) = strstr;