commit b713bf9de131c0c1c76815aef627b27720214cd7
parent 2e165ed3d9972c6b39ffd4a873f6da7d05c67069
Author: Janis Pagel <janis.pagel@ims.uni-stuttgart.de>
Date: Fri, 11 Sep 2020 12:57:48 +0200
Adjust volume control
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/suckless/dwm/config.h b/suckless/dwm/config.h
@@ -94,8 +94,8 @@ static const char scratchpadname[] = "scratchpad";
static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", "-e", "/bin/tmux", "new", "-s", "scratchpad", NULL };
static const char *statusbarcmd[] = { "statusbar", NULL }; /* Define command for starting dmenu-based statusbar */
static const char *lockcmd[] = { "slock", NULL }; /* Define command for locking screen */
-static const char *volumeupcmd[] = { "pactl", "set-sink-volume", "0", "+1%", NULL };
-static const char *volumedowncmd[] = { "pactl", "set-sink-volume", "0", "-1%", NULL };
+static const char *volumeupcmd[] = { "pactl", "set-sink-volume", "0", "+5%", NULL };
+static const char *volumedowncmd[] = { "pactl", "set-sink-volume", "0", "-5%", NULL };
static const char *volumemutecmd[] = { "amixer", "-q", "-D", "pulse", "sset", "Master", "toggle", NULL };
static const char *audiotogglecmd[] = { "mpc", "toggle", NULL };
static const char *brightnessupcmd[] = { "xbacklight", "-inc", "10", NULL };