Set MacOS audio volume from command line: pass number from 0 to 100
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
#!/usr/bin/osascript | |
on run argv | |
log "before: " & output volume of (get volume settings) | |
set volume output volume argv as text | |
log "after: " & output volume of (get volume settings) | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment