diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-05-14 17:53:34 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-05-14 17:53:34 +0900 |
| commit | 3b09d7bdfd7a1d0e7f90b34bcf605f1de18846e9 (patch) | |
| tree | 83d77e71b7d5b955c2b652393ca0ef4378e58e83 /dmenu | |
| parent | 2dee3394c9c45407c76a31377d35b82ca8968117 (diff) | |
modified dmenu/config.def.h, modified dwm/config.def.h
Diffstat (limited to 'dmenu')
| -rw-r--r-- | dmenu/config.def.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dmenu/config.def.h b/dmenu/config.def.h index 5c44fa7..4febf41 100644 --- a/dmenu/config.def.h +++ b/dmenu/config.def.h @@ -1,14 +1,8 @@ /* See LICENSE file for copyright and license details. */ -/* Default settings; can be overriden by command line. */ +/* Default settings; can be overriden by command line. */ #define PADDING 0 -/* - * Characters not considered part of a word while deleting words - * for example: " /?\"&[]" - */ -static const char worddelimiters[] = " "; - 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 dmx = PADDING; /* put dmenu at this x offset */ @@ -18,6 +12,12 @@ static unsigned int dmw = 0; /* make dmenu this wide */ static const char *dynamic = NULL; /* -dy option; dynamic command to run on input change */ static char *prompt = NULL; /* -p option; prompt to the left of input field */ +/* + * 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; |
