dmenu/config.h

24 lines
897 B
C
Raw Normal View History

2022-07-20 00:34:46 +00:00
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
2023-05-28 20:21:30 +00:00
"terminus:size=10"
2022-07-20 00:34:46 +00:00
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
2024-01-25 04:17:49 +00:00
[SchemeNorm] = { "#b2b2b2", "#272727" },
[SchemeSel] = { "#ffffff", "#3f3f3f" },
2022-07-20 00:34:46 +00:00
[SchemeOut] = { "#000000", "#000000" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;
/*
* Characters not considered part of a word while deleting words
* for example: " /?\"&[]"
*/
static const char worddelimiters[] = " ";