aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Pedroni <e.pedroni91@gmail.com>2018-12-28 17:22:01 +0100
committerEduardo Pedroni <e.pedroni91@gmail.com>2018-12-28 17:22:01 +0100
commitf65a276b99ad66ec417394349bd07f16538c0024 (patch)
tree2296514f049e0948e0043be82c5d801f92cab468
parentdaaf77ded69934f32ff9879c59d3e5279d841220 (diff)
Fixed inverted PA volume control bindings for laptop
-rw-r--r--config-laptop.h4
1 files 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