Twitch Stream AppleScript
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
tell application "Firefox" | |
activate | |
end tell | |
tell application "System Events" | |
keystroke "n" using command down | |
set size of front window of application process "Firefox" to {1564, 1057} | |
set position of front window of application process "Firefox" to {0, 23} | |
keystroke "0" using command down | |
key code 24 using command down | |
key code 24 using command down | |
end tell | |
tell application "OBS" | |
activate | |
end tell | |
tell application "System Events" | |
set size of front window of application process "OBS" to {1860, 1057} | |
set position of front window of application process "OBS" to {1920, 23} | |
end tell | |
tell application "iTerm" | |
activate | |
end tell | |
tell application "System Events" | |
keystroke "0" using command down | |
key code 24 using command down | |
key code 24 using command down | |
key code 24 using command down | |
set size of window 1 of application process "iTerm2" to {1564, 1057} | |
set position of window 1 of application process "iTerm2" to {0, 23} | |
end tell | |
tell application "Visual Studio Code" | |
activate | |
end tell | |
tell application "System Events" | |
key code 82 using command down | |
delay 0.5 | |
key code 24 using command down | |
set size of front window of application process "Code" to {1564, 1057} | |
set position of front window of application process "Code" to {0, 23} | |
end tell | |
tell application "System Preferences" | |
reveal anchor "output" of pane id "com.apple.preference.sound" | |
activate | |
end tell | |
tell application "System Events" | |
tell application process "System Preferences" | |
tell tab group 1 of window "Sound" | |
select (row 1 of table 1 of scroll area 1 where value of text field 1 is "Multi-Output Device") | |
end tell | |
end tell | |
end tell | |
quit application "System Preferences" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment