cleanup
Build/Publish XBPS / build-and-publish (push) Successful in 8s
Details
Build/Publish XBPS / build-and-publish (push) Successful in 8s
Details
This commit is contained in:
parent
ae90194906
commit
09f9902891
12
config.h
12
config.h
|
@ -1,11 +1,11 @@
|
||||||
/* See LICENSE file for copyright and license details. */
|
/* See LICENSE file for copyright and license details. */
|
||||||
/* Default settings; can be overriden by command line. */
|
/* Default settings; can be overriden by command line. */
|
||||||
|
|
||||||
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||||
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
|
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 */
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||||
static char font[] = "FiraCode Nerd Font 12";
|
static char font[] = "FiraCode Nerd Font 12";
|
||||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
|
|
||||||
#define BLACK "#15161E"
|
#define BLACK "#15161E"
|
||||||
#define RED "#f7768e"
|
#define RED "#f7768e"
|
||||||
|
@ -22,12 +22,12 @@ static const char *prompt = NULL; /* -p option; prompt to the left of
|
||||||
static
|
static
|
||||||
char *colors[][2] = {
|
char *colors[][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = { WHITE, BLACK },
|
[SchemeNorm] = { WHITE, BLACK },
|
||||||
[SchemeSel] = { BLACK, BLUE },
|
[SchemeSel] = { BLACK, BLUE },
|
||||||
[SchemeOut] = { UNDEFINED, UNDEFINED },
|
[SchemeOut] = { UNDEFINED, UNDEFINED },
|
||||||
};
|
};
|
||||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||||
static unsigned int lines = 0;
|
static unsigned int lines = 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Characters not considered part of a word while deleting words
|
* Characters not considered part of a word while deleting words
|
||||||
|
|
Loading…
Reference in New Issue