commit 7d613d70a78324466c51b30e46039f7fb8db37fb
parent 89d54dfc8a71953f6990ed13c86029874979cb80
Author: Robert Russell <robert@rr3.xyz>
Date: Sun, 26 Jul 2026 22:46:26 -0700
Update volume control command names
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/config.h b/config.h
@@ -59,8 +59,8 @@ static const Layout layouts[] = {
/* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_green, "-sf", col_gray4, NULL };
-static const char *volupcmd[] = { "volset", "+5%", NULL };
-static const char *voldowncmd[] = { "volset", "-5%", NULL };
+static const char *volupcmd[] = { "volume_set", "+5%", NULL };
+static const char *voldowncmd[] = { "volume_set", "-5%", NULL };
static const char *slockcmd[] = { "slock", NULL };
static const char *scrotcmd[] = { "scrot", "-s", NULL };
static const char *zzzcmd[] = { "sh", "-c", "slock & sleep 1 ; doas zzz", NULL };
@@ -116,4 +116,3 @@ static const Button buttons[] = {
{ ClkTagBar, MODKEY, Button1, tag, {0} },
{ ClkTagBar, MODKEY, Button3, toggletag, {0} },
};
-