From f06b9b495db31e1550c3112a75e8f7f87b299e48 Mon Sep 17 00:00:00 2001
From: Jesse Knaapen <91422501+JesseRobot01@users.noreply.github.com>
Date: Sun, 6 Oct 2024 08:50:47 +0200
Subject: [PATCH] Update config.jsonc
Swapped scroll-up and scroll-down for pulseaudio, scrolling up now increases the volume, scrolling down decreases.
---
configs/waybar/config.jsonc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configs/waybar/config.jsonc b/configs/waybar/config.jsonc
index 825c952..a328af4 100644
--- a/configs/waybar/config.jsonc
+++ b/configs/waybar/config.jsonc
@@ -84,8 +84,8 @@
"tooltip": false,
"format-muted": " Muted",
"on-click": "pamixer -t",
- "on-scroll-up": "pamixer -d 1",
- "on-scroll-down": "pamixer -i 1",
+ "on-scroll-up": "pamixer -i 1",
+ "on-scroll-down": "pamixer -d 1",
"scroll-step": 5,
"format-icons": {
"headphone": "",
@@ -143,4 +143,4 @@
"format-alt": " {bandwidthDownBytes} {bandwidthUpBytes}",
"interval": 2
}
-}
\ No newline at end of file
+}