diff --git a/config.h b/config.h index dfef0e0..55dac57 100644 --- a/config.h +++ b/config.h @@ -137,6 +137,8 @@ static Key keys[] = { { 0, XF86XK_AudioStop, spawn, {.v = (const char*[]){ "mpc", "stop", NULL } } }, { 0, XF86XK_AudioRewind, spawn, {.v = (const char*[]){ "mpc", "seek", "-10", NULL } } }, { 0, XF86XK_AudioForward, spawn, {.v = (const char*[]){ "mpc", "seek", "+10", NULL } } }, + { 0, XF86XK_MonBrightnessUp, spawn, {.v = (const char*[]){ "backlight_control", "+15", NULL } } }, + { 0, XF86XK_MonBrightnessDown, spawn, {.v = (const char*[]){ "backlight_control", "-15", NULL } } }, { MODKEY, XK_p, spawn, {.v = (const char*[]){ "mpc", "toggle", NULL } } }, { MODKEY|ShiftMask, XK_comma, spawn, {.v = (const char*[]){ "mpc", "prev", NULL } } }, diff --git a/dwm b/dwm index c79e905..40de853 100755 Binary files a/dwm and b/dwm differ