From d3cd9d79625cc1226fec747475887ce6f9cbc831 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 16 Sep 2026 08:37:34 +0200 Subject: fix(volume): call volume.sh from ~/bin The script lived in the stock ~/.config/waybar/, whose theme is dead and has been archived. It is not part of that theme: this bar calls it on every volume click and scroll, and a Hyprland keybind calls it for mic mute, so it moved to ~/bin rather than going with the theme. Co-Authored-By: Claude Opus 5 --- modules/image/volume.jsonc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'modules/image') diff --git a/modules/image/volume.jsonc b/modules/image/volume.jsonc index 1788643..2e7a7ec 100644 --- a/modules/image/volume.jsonc +++ b/modules/image/volume.jsonc @@ -26,10 +26,10 @@ "size": 22, "interval": 2, "signal": 8, - "on-click": "$HOME/.config/waybar/scripts/volume.sh output mute", + "on-click": "$HOME/bin/volume.sh output mute", "on-click-right": "pavucontrol-qt", - "on-scroll-up": "$HOME/.config/waybar/scripts/volume.sh output raise", - "on-scroll-down": "$HOME/.config/waybar/scripts/volume.sh output lower" + "on-scroll-up": "$HOME/bin/volume.sh output raise", + "on-scroll-down": "$HOME/bin/volume.sh output lower" }, "image#mic": { @@ -37,8 +37,8 @@ "size": 22, "interval": 2, "signal": 8, - "on-click": "$HOME/.config/waybar/scripts/volume.sh input mute", - "on-scroll-up": "$HOME/.config/waybar/scripts/volume.sh input raise", - "on-scroll-down": "$HOME/.config/waybar/scripts/volume.sh input lower" + "on-click": "$HOME/bin/volume.sh input mute", + "on-scroll-up": "$HOME/bin/volume.sh input raise", + "on-scroll-down": "$HOME/bin/volume.sh input lower" } } -- cgit v1.2.3