Last active
October 22, 2024 07:11
-
-
Save aprock/6796623 to your computer and use it in GitHub Desktop.
Automate Audio Hijack Pro
create a new Run Applescript Automator Action, and place it in the login items
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} | |
tell application "Audio Hijack Pro" | |
try | |
set miniaturized of windows to true -- most apps | |
end try | |
start hijacking (first session whose name is "System") | |
end tell | |
return input | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment