diff options
| -rw-r--r-- | config.h | 2 | ||||
| -rw-r--r-- | dwm.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ static const char *colors[][5] = { static const char *const autostart[] = { /* program arguments options null terminator */ "xhidecursor", "", "", NULL, - "xsetroot", "-solid", "black", NULL, + "xsetroot", "-solid", "black", NULL, "xmodmap", "-e", "keycode 66 = Escape", NULL, "xmodmap", "-e", "keycode 108 = Caps_Lock", NULL, NULL @@ -2407,7 +2407,7 @@ search(const Arg *arg) { names[nameslen - 1] = '\0'; char dmenucmd[256]; - snprintf(dmenucmd, sizeof(dmenucmd), "echo '%s' | dmenu -l 10 -i -p 'Find client:'", names); + snprintf(dmenucmd, sizeof(dmenucmd), "echo '%s' | dmenu -vi -l 10 -i -p 'Find client:'", names); FILE *fp = popen(dmenucmd, "r"); if (!fp) { |
