Skip to content

Instantly share code, notes, and snippets.

@angusdev
Created January 6, 2023 14:33
Show Gist options
  • Save angusdev/95414d60c0447cb67ba80a85fa788622 to your computer and use it in GitHub Desktop.
Save angusdev/95414d60c0447cb67ba80a85fa788622 to your computer and use it in GitHub Desktop.
Resize Citrix
tell application "System Events" to tell process "Citrix Viewer"
tell window 2
set position to {100, 100}
set size to {1024, 768}
end tell
end tell
osascript -e 'tell application "System Events" to tell window 2 of process "Citrix Viewer" to set { position, size } to { {100, 65}, {1600, 1200} }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment