Created
September 9, 2025 22:18
-
-
Save alesso-x/43cb84a2b2e33595ce9da5bba490c2fd to your computer and use it in GitHub Desktop.
Mac Tiling Keyboard Shortcuts
This file contains hidden or 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
| # 'Window->Fill' '^~↩' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Fill' '~^\\U21a9' | |
| # 'Window->Move & Resize->Left' '^~←' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Left' '~^\\U2190' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Right' '~^\\U2192' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Top' '~^\\U2191' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Bottom' '~^\\U2193' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Top Left' '~^u' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Bottom Left' '~^j' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Top Right' '~^i' | |
| defaults write -g NSUserKeyEquivalents -dict-add '\033Window\033Move & Resize\033Bottom Right' '~^k' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment