From db887259ee068d5dbc528c7723d1ff459018d4af Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sat, 20 Jun 2015 17:32:14 -0600 Subject: [PATCH] added alt [ prev cmus track and alt ] next cmus track --- dwm.config.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dwm.config.h b/dwm.config.h index d98dd80..559dd60 100644 --- a/dwm.config.h +++ b/dwm.config.h @@ -29,7 +29,7 @@ static const char *tags[] = { "\u01A0", "\u01a5", "\u01A1 ", "\u01A2", "\u01A3 " static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, True, -1 }, - { "Firefox", NULL, NULL, 1 << 3, False, -1 }, + { "Firefox", NULL, NULL, 0, False, -1 }, }; /* layout(s) */ @@ -73,7 +73,9 @@ static Key keys[] = { { 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol} }, { 0, XF86XK_AudioMute, spawn, {.v = mute } }, { MODKEY, XK_u, spawn, {.v = cmusplaypause} }, - { MODKEY, XK_p, spawn, {.v = dmenucmd } }, + { MODKEY, XK_bracketright, spawn, {.v = cmusnext} }, + { MODKEY, XK_bracketleft, spawn, {.v = cmusprev} }, + { MODKEY, XK_p, spawn, {.v = dmenucmd } }, { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } },