From eca23672df6bf192e9d835750b78b723e396b521 Mon Sep 17 00:00:00 2001 From: celso Date: Thu, 23 Nov 2023 02:37:42 -0300 Subject: [PATCH] undid amixer changes --- config.def.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index 7176b74..bbeeabb 100644 --- a/config.def.h +++ b/config.def.h @@ -80,10 +80,10 @@ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenuf static const char *termcmd[] = { "st", NULL }; /* alsa volume control */ static const char *alsacmd[] = { "st", "-c", "floatalsamxr", "-e", "alsamixer", NULL }; -static const char *upvol[] = { "amixer", "-c", "1", "set", "Master", "2+", NULL }; -static const char *downvol[] = { "amixer", "-c", "1", "set", "Master", "2-", NULL }; +static const char *upvol[] = { "amixer", "set", "Master", "2+", NULL }; +static const char *downvol[] = { "amixer", "set", "Master", "2-", NULL }; /* alsa muting/unmuting */ -static const char *mute[] = { "amixer", "-c", "1", "-q", "set", "Master", "toggle", NULL }; +static const char *mute[] = { "amixer", "-q", "set", "Master", "toggle", NULL }; /* screenshot tools */ static const char *scrallcmd[] = { "/home/kurk/sources/scripts/prtscr/prtscra.sh", NULL }; static const char *scrcurcmd[] = { "/home/kurk/sources/scripts/prtscr/prtscrcr.sh", NULL };