commit 2707e844196ae6ac394d1988fdfc7b9be90eb970 from: Andre Mazzotti Bertachini date: Mon Oct 27 13:15:07 2025 UTC Bottom bar commit - 8b48986f4c730725367e2865e5ea24931855018f commit + 2707e844196ae6ac394d1988fdfc7b9be90eb970 blob - /dev/null blob + 10717b6731fea11fcf8434d216f1f1bd01d93888 (mode 644) --- /dev/null +++ .gitignore @@ -0,0 +1,3 @@ +*.o +dmenu +stest blob - /dev/null blob + ad70a459f0341604dc56926ca16f73aa9021bdb4 (mode 644) --- /dev/null +++ config.h @@ -0,0 +1,23 @@ +/* See LICENSE file for copyright and license details. */ +/* Default settings; can be overriden by command line. */ + +static int topbar = 0; /* -b option; if 0, dmenu appears at bottom */ +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { + "monospace:size=10" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -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[] = " ";