From a56f15aa5d22519ac682a792ff2796cf8f96c1df Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Wed, 13 May 2026 11:10:25 -0400 Subject: fix volume keybinds --- src/dwm/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dwm/config.h') diff --git a/src/dwm/config.h b/src/dwm/config.h index 82af23f..05c4971 100644 --- a/src/dwm/config.h +++ b/src/dwm/config.h @@ -59,8 +59,8 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() static const char *dmenucmd[] = { "dmenu_run", NULL }; static const char *termcmd[] = { "st", NULL }; static const char *screenshotcmd[] = { "screenshot", NULL }; -static const char *volupcmd[] = { "pactl", "set-sink-volume" "@DEFAULT_SINK@", "+5%", NULL }; -static const char *voldowncmd[] = { "pactl", "set-sink-volume" "@DEFAULT_SINK@", "-5%", NULL }; +static const char *volupcmd[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "+5%", NULL }; +static const char *voldowncmd[] = { "pactl", "set-sink-volume", "@DEFAULT_SINK@", "-5%", NULL }; static const char *medianextcmd[] = { "playerctl", "next", NULL}; static const char *mediaprevcmd[] = { "playerctl", "previous", NULL}; static const char *mediatogglecmd[] = { "playerctl", "play-pause", NULL}; -- cgit v1.3-2-g0d8e