Last active
June 30, 2018 16:19
-
-
Save miketoth/fe7d60ca43efd0130715 to your computer and use it in GitHub Desktop.
TURN DOWN FOR WHAT MAC ONLY SORRY
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VOL=$(osascript -e "output volume of (get volume settings)") | |
NEWVOL=0 | |
while true | |
do | |
if (($VOL == $NEWVOL)); then | |
$(osascript -e "set volume output volume 100") | |
echo $(osascript -e "output volume of (get volume settings)") | |
$(afplay /Users/skullum/Desktop/just_what.mp3) | |
fi | |
VOL=$(osascript -e "output volume of (get volume settings)") | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
run as a background process yo
./turn-down.sh &