Skip to content

Instantly share code, notes, and snippets.

@JoshHrach
Forked from chrisfsampaio/fullsim
Created November 23, 2016 19:04
Show Gist options
  • Save JoshHrach/ad82ba1cab75b6f97ca3810024eb3e24 to your computer and use it in GitHub Desktop.
Save JoshHrach/ad82ba1cab75b6f97ca3810024eb3e24 to your computer and use it in GitHub Desktop.
LLDB 'script' to enable full screen mode in the iOS Simulator
#!/usr/bin/env bash
lldb -n Simulator \
-o "expr ((NSWindow *)[(NSArray *)[[NSApplication sharedApplication] windows] setValue:@(1<<7|1<<8|1<<11) forKey:@\"collectionBehavior\"]);" \
-o "set set auto-confirm true" \
-o quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment