mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 03:44:57 -04:00
17 lines
No EOL
420 B
Shell
Executable file
17 lines
No EOL
420 B
Shell
Executable file
#!/bin/bash
|
|
|
|
# Volume scroll script - allows changing volume with mouse scroll
|
|
|
|
VOLUME_STEP=5
|
|
|
|
case "$SCROLL_DIRECTION" in
|
|
"up")
|
|
osascript -e "set volume output volume (output volume of (get volume settings) + $VOLUME_STEP)"
|
|
;;
|
|
"down")
|
|
osascript -e "set volume output volume (output volume of (get volume settings) - $VOLUME_STEP)"
|
|
;;
|
|
esac
|
|
|
|
# Trigger volume update
|
|
sketchybar --trigger volume_change |