Remove unused keybindings

This commit is contained in:
Nise Void 2019-02-18 15:50:59 +01:00
parent 3785b84844
commit 60e51c148d
Signed by: NiseVoid
GPG Key ID: FBA14AC83EA602F3
1 changed files with 1 additions and 7 deletions

View File

@ -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} },