diff options
| author | iamcheeseman <[email protected]> | 2026-05-13 11:10:25 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-13 11:10:25 -0400 |
| commit | a56f15aa5d22519ac682a792ff2796cf8f96c1df (patch) | |
| tree | e09cd0f05957024ba99ea48ea6166e728a825484 /src/dwm/config.h | |
| parent | ba75a421cf711ab6b129a48db564aed06dd59103 (diff) | |
fix volume keybinds
Diffstat (limited to 'src/dwm/config.h')
| -rw-r--r-- | src/dwm/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
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}; |
