diff options
| author | LM-LCL <hello@exaltedelite.club> | 2024-11-25 04:18:21 +0100 |
|---|---|---|
| committer | LM-LCL <hello@exaltedelite.club> | 2024-11-25 04:18:21 +0100 |
| commit | cedf7c70249072d599490f6fc54bb71aaae520d1 (patch) | |
| tree | e61d5fa161603f7149636a9b61b30a69bdcc8fc9 | |
| parent | 4487767884544aa089bd2509f8565f72973197f0 (diff) | |
Rename alt-tab function
| -rw-r--r-- | config.def.h | 4 | ||||
| -rw-r--r-- | config.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 4278ea7..977da69 100644 --- a/config.def.h +++ b/config.def.h @@ -66,7 +66,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_white, "-sb", col_gray2, "-sf", col_white, NULL }; static const char *termcmd[] = { "st", NULL }; -static const char *rofitab[] = { "alt-tab" }; +static const char *dmenutab[] = { "alt-tab" }; #include "movestack.c" static const Key keys[] = { @@ -81,7 +81,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_j, movestack, {.i = +1} }, { MODKEY|ShiftMask, XK_k, movestack, {.i = -1} }, { MODKEY, XK_Return, zoom, {0} }, - { MODKEY, XK_Tab, spawn, {.v = rofitab} }, + { MODKEY, XK_Tab, spawn, {.v = dmenutab} }, { MODKEY|ShiftMask, XK_c, killclient, {0} }, { MODKEY, XK_n, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, @@ -66,7 +66,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_white, "-sb", col_gray2, "-sf", col_white, NULL }; static const char *termcmd[] = { "st", NULL }; -static const char *rofitab[] = { "alt-tab" }; +static const char *dmenutab[] = { "alt-tab" }; #include "movestack.c" static const Key keys[] = { @@ -81,7 +81,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_j, movestack, {.i = +1} }, { MODKEY|ShiftMask, XK_k, movestack, {.i = -1} }, { MODKEY, XK_Return, zoom, {0} }, - { MODKEY, XK_Tab, spawn, {.v = rofitab} }, + { MODKEY, XK_Tab, spawn, {.v = dmenutab} }, { MODKEY|ShiftMask, XK_c, killclient, {0} }, { MODKEY, XK_n, setlayout, {.v = &layouts[0]} }, { MODKEY, XK_f, setlayout, {.v = &layouts[1]} }, |
