aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-16 08:37:34 +0200
committerDanilo M. <danix@danix.xyz>2026-09-16 08:37:34 +0200
commitd3cd9d79625cc1226fec747475887ce6f9cbc831 (patch)
treed07953746c0132a417267849cb639edd838d5478 /modules
parent9bd8152604fcf3ece6a2ba08819e6d7c5ee7fe57 (diff)
downloadwaybar-theme-udt-d3cd9d79625cc1226fec747475887ce6f9cbc831.tar.gz
waybar-theme-udt-d3cd9d79625cc1226fec747475887ce6f9cbc831.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/image/volume.jsonc12
1 files changed, 6 insertions, 6 deletions
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"
}
}