Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gullinbursti/858ebaf2caf9e786d157d42c22947b4c to your computer and use it in GitHub Desktop.
Save gullinbursti/858ebaf2caf9e786d157d42c22947b4c to your computer and use it in GitHub Desktop.
Adjust iTunes volume through Applescript
tell application "iTunes"
set vol to sound volume
set vol to vol - 10
if vol is less than 0 then
set vol to 0
end if
set the sound volume to vol
end tell
tell application "iTunes"
set vol to sound volume
set vol to vol + 10
if vol is greater than 100 then
set vol to 100
end if
set the sound volume to vol
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment