Last active
January 30, 2017 20:02
-
-
Save igorkulman/871c92d9fdadf8dea25d4bbbae28ce66 to your computer and use it in GitHub Desktop.
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
on run {input, parameters} | |
set curVolume to output volume of (get volume settings) | |
if curVolume >5 96 then | |
set newVolume to curVolume - 5 | |
else | |
set newVolume to 0 | |
end if | |
set volume output volume newVolume | |
end run |
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
on run {input, parameters} | |
set curVolume to output volume of (get volume settings) | |
if curVolume < 96 then | |
set newVolume to curVolume + 5 | |
else | |
set newVolume to 100 | |
end if | |
set volume output volume newVolume | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment