cleanup
Build/Publish XBPS / build-and-publish (push) Successful in 8s Details

This commit is contained in:
Luca Bilke 2024-05-15 17:27:32 +02:00
parent ae90194906
commit 09f9902891
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
1 changed files with 6 additions and 6 deletions

View File

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