mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
40 lines
1.6 KiB
C
40 lines
1.6 KiB
C
|
/* 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 */
|
||
|
static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */
|
||
|
static int instant = 0; /* -n option; if 1, selects matching item without the need to press enter */
|
||
|
static int center = 0; /* -c option; if 0, dmenu won't be centered on the screen */
|
||
|
static int min_width = 680; /* minimum width when centered */
|
||
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||
|
static char *fonts[] =
|
||
|
{
|
||
|
"JetBrainsMono Nerd Font Semiblod:size=12"
|
||
|
};
|
||
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||
|
|
||
|
|
||
|
static
|
||
|
char *colors[][2] = {
|
||
|
/* fg bg */
|
||
|
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
||
|
[SchemeSel] = { "#eeeeee", "#005577" },
|
||
|
[SchemeOut] = { "#000000", "#00ffff" },
|
||
|
[SchemeBorder] = { "#000000", "#005577" },
|
||
|
};
|
||
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||
|
static unsigned int lines = 0;
|
||
|
/* -g option; if nonzero, dmenu uses a grid comprised of columns and lines */
|
||
|
static unsigned int columns = 0;
|
||
|
static unsigned int lineheight = 0; /* -h option; minimum height of a menu line */
|
||
|
static unsigned int min_lineheight = 8;
|
||
|
|
||
|
/*
|
||
|
* Characters not considered part of a word while deleting words
|
||
|
* for example: " /?\"&[]"
|
||
|
*/
|
||
|
static const char worddelimiters[] = " ";
|
||
|
|
||
|
/* Size of the window border */
|
||
|
static unsigned int border_width = 0;
|