diff options
| author | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-08-16 17:44:24 +0100 |
|---|---|---|
| committer | ProsperousPotato <ProsperousPotato@users.noreply.github.com> | 2025-08-16 17:44:24 +0100 |
| commit | 6d00e7d21b4ced049caba814ee576dbfc017ea88 (patch) | |
| tree | 1aa9fbcad835920879a63343b52eba9044d4d641 /config.h | |
| parent | dd26b19364b95fe727204a18c9e471eda54e66da (diff) | |
rename function quicksearch -> search, add autostart example
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -19,6 +19,8 @@ static const char *colors[][4] = { }; static const char *const autostart[] = { +/* program arguments options null terminator */ +// "st", "-c stfloat -e", "htop", NULL, NULL }; @@ -72,7 +74,7 @@ static const Layout layouts[] = { /* commands */ static const char *termcmd[] = { TERMINAL, NULL }; -#include "quicksearch.c" +#include "search.c" #include "togglemouse.c" #include <X11/XF86keysym.h> static const Key keys[] = { @@ -130,8 +132,8 @@ static const Key keys[] = { { MODKEY, XK_Print, spawn, SHCMD("maimpick") }, { MODKEY, XK_c, spawn, SHCMD("pgrep xcompmgr && pkill -9 xcompmgr || xcompmgr &") }, - { MODKEY, XK_p, quicksearch, {.i = 0} }, - { MODKEY|ShiftMask, XK_p, quicksearch, {.i = 1} }, + { MODKEY, XK_p, search, {.i = 0} }, + { MODKEY|ShiftMask, XK_p, search, {.i = 1} }, { MODKEY, XK_b, togglemouse, {0} }, }; |
