undid amixer changes

This commit is contained in:
celso 2023-11-23 02:37:42 -03:00
parent 973d1c6803
commit eca23672df
1 changed files with 3 additions and 3 deletions

View File

@ -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 };