commit fe8aa7989b05993c0bcb795bcd8b635d4edc3d82
parent f5f3c4aa06fa7c85eb6a13b273e3d1d9343a6d8b
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Fri, 11 Oct 2019 22:24:32 +0300
docs: update
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/config.h b/config.h
@@ -15,8 +15,9 @@
const char* menu[] = {"dmenu_run", NULL};
const char* term[] = {"st", NULL};
-const char* voldown[] = {"amixer", "sset", "Master", "5\%-", NULL};
-const char* volup[] = {"amixer", "sset", "Master", "5\%+", NULL};
+const char* voldown[] = {"amixer", "sset", "Master", "5\%-", NULL};
+const char* volup[] = {"amixer", "sset", "Master", "5\%+", NULL};
+const char* volmute[] = {"amixer", "sset", "Master", "toggle", NULL};
const char* colors[] = {"bud", "/home/goldie/Pictures/Wallpapers", NULL};
#define DESKTOP(K,N) \
@@ -34,6 +35,7 @@ static struct key keys[] = {
{MOD, XK_Return, run, {.com = term}},
{0, XF86XK_AudioLowerVolume, run, {.com = voldown}},
{0, XF86XK_AudioRaiseVolume, run, {.com = volup}},
+ {0, XF86XK_AudioMute, run, {.com = volmute}},
DESKTOP( XK_0, 0)
DESKTOP( XK_1, 1)