aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/dwm/config.h
diff options
context:
space:
mode:
authorNicholas Noll <nnoll523@gmail.com>2020-06-26 19:40:25 +0200
committerNicholas Noll <nnoll523@gmail.com>2020-06-26 19:40:25 +0200
commit476516d4b144e6bcd9211e0d23c829f34c0b7833 (patch)
treec7e5a36d4d89b131573b02bb92995ddf3f33d63a /sys/cmd/dwm/config.h
parenta0655a2088282eedc184dc3195b2eda0a01f2c83 (diff)
feat: simplified volume command
Diffstat (limited to 'sys/cmd/dwm/config.h')
-rw-r--r--sys/cmd/dwm/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/cmd/dwm/config.h b/sys/cmd/dwm/config.h
index 6875304..e0183b6 100644
--- a/sys/cmd/dwm/config.h
+++ b/sys/cmd/dwm/config.h
@@ -60,9 +60,9 @@ static Layout layouts[] = {
static char *menucmd[] = { "menu_run", nil };
static char *termcmd[] = { "term", nil };
static char *webscmd[] = { "qutebrowser", nil };
-static char *upvolcmd[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "+5%", nil };
-static char *lovolcmd[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "-5%", nil };
-static char *novolcmd[] = { "pactl", "set-sink-mute", "@DEFAULT_SINK@", "toggle", nil };
+static char *upvolcmd[] = { "vol", "+5%", nil };
+static char *lovolcmd[] = { "vol", "-5%", nil };
+static char *novolcmd[] = { "vol", "mute", nil };
#define XK_lovol XF86XK_AudioLowerVolume
#define XK_upvol XF86XK_AudioRaiseVolume