Skip to content

Instantly share code, notes, and snippets.

@awsp
Forked from laclefyoshi/eargasm_explosion.applescript
Last active August 29, 2015 14:17
Show Gist options
  • Save awsp/a374a2c446f8621f95ea to your computer and use it in GitHub Desktop.
Save awsp/a374a2c446f8621f95ea to your computer and use it in GitHub Desktop.
tell application "iTunes"
activate
set newPreset to make new EQ preset
set name of newPreset to "Eargasm Explosion"
set band 1 of newPreset to 3
set band 2 of newPreset to 6
set band 3 of newPreset to 9
set band 4 of newPreset to 7
set band 5 of newPreset to 6
set band 6 of newPreset to 5
set band 7 of newPreset to 7
set band 8 of newPreset to 4
set band 9 of newPreset to 11
set band 10 of newPreset to 8
set preamp of newPreset to 0
set current EQ preset to newPreset
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment