Configured absolutely everything

This commit is contained in:
Andreev Gregory 2025-03-03 22:19:41 +03:00
parent affb670d84
commit 755c8511a7
3 changed files with 11 additions and 14 deletions

View File

@ -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)

View File

@ -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 },
};
/*

View File

@ -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;