microphone
This commit is contained in:
parent
845b267724
commit
46572e954f
1 changed files with 6 additions and 0 deletions
|
@ -83,8 +83,11 @@ static const char *brightup[] = { "brightup", NULL };
|
|||
static const char *clipmenu[] = { "clipmenu", NULL };
|
||||
static const char *voldown[] = { "voldown", NULL };
|
||||
static const char *volup[] = { "volup", NULL };
|
||||
static const char *micdown[] = { "micdown", NULL };
|
||||
static const char *micup[] = { "micup", NULL };
|
||||
static const char *prtsc[] = { "prtsc", NULL };
|
||||
static const char *mute[] = { "mute", NULL };
|
||||
static const char *micmute[] = { "mute", NULL };
|
||||
/* --------------- */
|
||||
|
||||
#include "movestack.c"
|
||||
|
@ -141,8 +144,11 @@ static const Key keys[] = {
|
|||
{ 0, XF86XK_MonBrightnessUp, spawn, {.v = brightup } },
|
||||
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = voldown } },
|
||||
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup } },
|
||||
{ MODKEY, XF86XK_AudioLowerVolume, spawn, {.v = micdown } },
|
||||
{ MODKEY, XF86XK_AudioRaiseVolume, spawn, {.v = micup } },
|
||||
{ 0, XK_Print, spawn, {.v = prtsc } },
|
||||
{ 0, XF86XK_AudioMute, spawn, {.v = mute } },
|
||||
{ MODKEY, XF86XK_AudioMute, spawn, {.v = micmute } },
|
||||
/* ------------ */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue