You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time I'm going to work with Skip I have to manually start the emulator, position the window and resize it. This script does it automatically, and if you save it as an application it can be run automatically at login
tell application "System Events"
-- Set the name of your emulator
do shell script "~/Library/Android/sdk/emulator/emulator @Medium_Phone_API_35 > /dev/null 2>&1 &"
-- Set to 3 or 5 seconds depending on needs
delay 3
-- Set the emulator window's title
set win to window "Android Emulator - Medium_Phone_API_35:5554" of process "qemu-system-aarch64"
-- Set your desired position and size
set position of win to {2250, 700}
set size of win to {300, 650}
end tell
Where would be a good place to share this script? I can reupload it or feel free to put it wherever is best so others can use it
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Every time I'm going to work with Skip I have to manually start the emulator, position the window and resize it. This script does it automatically, and if you save it as an application it can be run automatically at login
Where would be a good place to share this script? I can reupload it or feel free to put it wherever is best so others can use it
Beta Was this translation helpful? Give feedback.
All reactions