suckless/dmenu

add config (dde438c6336a3041e95eb9db42f253a3784a3cb5)
Repositories | README | LICENSE

commit dde438c6336a3041e95eb9db42f253a3784a3cb5
parent a35f77d791aa420abff3d98d3b19dba1bb4b47d7
Author: Friedel Schön <[email protected]>
Date:   Mon,  9 Dec 2024 12:53:40 +0100

add config

Diffstat:
Aconfig.h44++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+), 0 deletions(-)

diff --git a/config.h b/config.h @@ -0,0 +1,44 @@ +static const char black[] = "#282828"; +static const char blue[] = "#83a598"; // focused window border +static const char gray2[] = "#282828"; // unfocused window border +static const char gray3[] = "#3c3836"; +static const char gray4[] = "#282828"; +static const char green[] = "#8ec07c"; +static const char orange[] = "#fe8019"; +static const char pink[] = "#d3869b"; +static const char red[] = "#fb4934"; +static const char white[] = "#ebdbb2"; +static const char yellow[] = "#b8bb26"; +static const char col_borderbar[] = "#1e2122"; + +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static int user_bh = 10; /* add an defined amount of pixels to the bar height */ +static int centered = 0; /* -c option; centers dmenu on screen */ +static int min_width = 500; /* minimum width when centered */ + +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *dynamic = NULL; /* -dy option; dynamic command to run on input change */ +static const char *fonts[] = {"Monaco:size=9"}; +static const char *colors[][3] = { + /* fg bg border */ + [SchemeNorm] = {white, gray3, blue}, + [SchemeSel] = {gray4, blue, gray3}, + [SchemeOut] = {gray2, red, gray3}, + + [SchemeSelHighlight] = {blue, gray4}, + [SchemeNormHighlight] = {gray3, white}, +}; + +/* -l and -g options; controls number of lines and columns in grid if > 0 */ +static unsigned int lines = 0; +static unsigned int columns = 0; + +/* + * 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 = 2;