From f65a276b99ad66ec417394349bd07f16538c0024 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Fri, 28 Dec 2018 17:22:01 +0100 Subject: Fixed inverted PA volume control bindings for laptop --- config-laptop.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-laptop.h b/config-laptop.h index 8c69ec7..ae07415 100644 --- a/config-laptop.h +++ b/config-laptop.h @@ -127,8 +127,8 @@ static const char *lowervolumecmd[] = { "amixer", "-q", "set", "Master", "2dB-" static const char *raisevolumecmd[] = { "amixer", "-q", "set", "Master", "2dB+", NULL }; static const char *mutevolumecmd[] = { "amixer", "-q", "set", "Master", "toggle", NULL }; #elif defined(PULSEAUDIO) -static const char *lowervolumecmd[] = { "pactl", "set-sink-volume", "0", "+2%", NULL }; -static const char *raisevolumecmd[] = { "pactl", "set-sink-volume", "0", "-2%", NULL }; +static const char *lowervolumecmd[] = { "pactl", "set-sink-volume", "0", "-2%", NULL }; +static const char *raisevolumecmd[] = { "pactl", "set-sink-volume", "0", "+2%", NULL }; static const char *mutevolumecmd[] = { "pactl", "set-sink-mute", "0", "toggle", NULL }; #endif -- cgit v1.2.3