Skip to content

Instantly share code, notes, and snippets.

@alesso-x
Created September 9, 2025 22:18
Show Gist options
  • Select an option

  • Save alesso-x/43cb84a2b2e33595ce9da5bba490c2fd to your computer and use it in GitHub Desktop.

Select an option

Save alesso-x/43cb84a2b2e33595ce9da5bba490c2fd to your computer and use it in GitHub Desktop.
Mac Tiling Keyboard Shortcuts
# '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