diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-10 09:45:06 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-10 09:45:06 +0200 |
commit | f57fa2327d938908d57521ea03ed6fed622ee5f6 (patch) | |
tree | d93eb8c70c3bdfdc7bf8a567975ebbcca50c1384 /config.h | |
parent | 006cfda3a9b428db58dfb303cbd5bc419daa980a (diff) | |
download | dmenu-f57fa2327d938908d57521ea03ed6fed622ee5f6.tar.gz dmenu-f57fa2327d938908d57521ea03ed6fed622ee5f6.tar.bz2 dmenu-f57fa2327d938908d57521ea03ed6fed622ee5f6.zip |
update
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..ed20764 --- /dev/null +++ b/config.h @@ -0,0 +1,20 @@ +/* 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[] = { + "JetBrains Mono Nerd:size=10" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ + +#include "/home/philip/.cache/wal/colors-wal-dmenu.h" + +/* -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[] = " "; |