summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 4278ea7..977da69 100644
--- a/config.h
+++ b/config.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]} },