From 5964574344f7f9e7959c1a7888327d4b9bb1e46e Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Sun, 12 Jun 2016 22:24:43 -0600 Subject: [PATCH] changed volume control to volumeset --- dwm.config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dwm.config.h b/dwm.config.h index 966c82f..41fa6cd 100644 --- a/dwm.config.h +++ b/dwm.config.h @@ -59,9 +59,9 @@ static const Layout layouts[] = { static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", colors[0][ColBG], "-nf", colors[0][ColFG], "-sb", colors[1][ColBG], "-sf", colors[1][ColFG], NULL }; static const char *termcmd[] = { "termite", NULL }; /*functions for volume control*/ -static const char *upvol[] = { "amixer", "sset", "Master", "1%+", NULL}; -static const char *downvol[] = { "amixer", "sset", "Master", "1%-", NULL}; -static const char *mute[] = { "amixer", "sset", "Master", "toggle", NULL}; +static const char *upvol[] = { "volumeset", "up", NULL }; +static const char *downvol[] = { "volumeset", "down", NULL }; +static const char *mute[] = { "volumeset", "mute", NULL }; /*cmus functions*/ static const char *cmusplaypause[] = { "cmus-remote", "-u", NULL}; static const char *cmusnext[] = { "cmus-remote", "--next", NULL};