diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-31 22:35:20 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-31 22:35:20 +0200 |
commit | 8f7fe608601121d7c4ed9db792eb81c734bff882 (patch) | |
tree | cb8b8d6ce8a3b4b20c6b12df03df4ac986f7a651 /config.def.h.orig | |
parent | 5215efefccc6fe77177781b1fc235259bb937744 (diff) | |
download | dmenu-8f7fe608601121d7c4ed9db792eb81c734bff882.tar.gz dmenu-8f7fe608601121d7c4ed9db792eb81c734bff882.tar.bz2 dmenu-8f7fe608601121d7c4ed9db792eb81c734bff882.zip |
update
Diffstat (limited to 'config.def.h.orig')
-rw-r--r-- | config.def.h.orig | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/config.def.h.orig b/config.def.h.orig deleted file mode 100644 index 3404b08..0000000 --- a/config.def.h.orig +++ /dev/null @@ -1,25 +0,0 @@ -/* 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 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 *fonts[] = { - "JetBrainsMono Nerd Font Mono:size=11" -}; -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[] = " "; |