Remove unused keybindings
This commit is contained in:
parent
3785b84844
commit
60e51c148d
8
config.h
8
config.h
@ -51,9 +51,7 @@ static const Layout layouts[] = {
|
||||
#define MODKEY Mod4Mask
|
||||
#define TAGKEYS(KEY,TAG) \
|
||||
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, \
|
||||
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} },
|
||||
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} },
|
||||
|
||||
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
||||
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
||||
@ -90,11 +88,7 @@ static Key keys[] = {
|
||||
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
|
||||
{ MODKEY, XK_Return, zoom, {0} },
|
||||
{ MODKEY, XK_q, killclient, {0} },
|
||||
{ MODKEY|Mod1Mask, XK_t, setlayout, {.v = &layouts[0]} },
|
||||
{ MODKEY|Mod1Mask|ShiftMask, XK_t, setlayout, {.v = &layouts[1]} },
|
||||
{ MODKEY, XK_f, togglefullscreen, {0} },
|
||||
{ MODKEY, XK_0, view, {.ui = ~0 } },
|
||||
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
|
||||
{ 0, XK_Print, spawn, {.v = screenshotcmd} },
|
||||
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = nextcmd} },
|
||||
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = prevcmd} },
|
||||
|
Loading…
Reference in New Issue
Block a user