Created
May 28, 2013 23:41
-
-
Save MaxMartin/5666978 to your computer and use it in GitHub Desktop.
.slate
This file contains 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
config defaultToCurrentScreen true | |
config nudgePercentOf screenSize | |
config resizePercentOf screenSize | |
# Aliases | |
alias full move screenOriginX;screenOriginY screenSizeX;screenSizeY | |
alias lefthalf move screenOriginX;screenOriginY screenSizeX/2;screenSizeY | |
alias leftthird move screenOriginX;screenOriginY screenSizeX/3;screenSizeY | |
alias righthalf move screenOriginX+screenSizeX/2;screenOriginY screenSizeX/2;screenSizeY | |
alias rightthird move screenOriginX+screenSizeX/3+screenSizeX/3;screenOriginY screenSizeX/3;screenSizeY | |
alias middlethird move screenOriginX+screenSizeX/3;screenOriginY screenSizeX/3;screenSizeY | |
alias tophalf move screenOriginX;screenOriginY screenSizeX;screenSizeY/2 | |
alias bottomhalf move screenOriginX;screenOriginY+screenSizeY/2 screenSizeX;screenSizeY/2 | |
alias topleft corner top-left resize:screenSizeX/2;screenSizeY/2 | |
alias topright corner top-right resize:screenSizeX/2;screenSizeY/2 | |
alias bottomleft corner bottom-left resize:screenSizeX/2;screenSizeY/2 | |
alias bottomright corner bottom-right resize:screenSizeX/2;screenSizeY/2 | |
config windowHintsShowIcons true | |
config windowHintsIgnoreHiddenWindows false | |
config windowHintsSpread true | |
bind e:cmd hint ASDFJKLQWERUIOP | |
bind g:cmd grid padding:5 1:6,2 0:6,3 | |
# Location - Sets the window to the specified location. | |
bind return:shift;cmd ${full} | |
bind k:shift;cmd ${tophalf} | |
bind j:shift;cmd ${bottomhalf} | |
bind h:shift;cmd ${lefthalf} | |
bind h:shift;alt;cmd ${leftthird} | |
bind i:shift;alt;cmd ${middlethird} | |
bind b:shift;cmd ${bottomleft} | |
bind y:shift;cmd ${topleft} | |
bind l:shift;cmd ${righthalf} | |
bind l:shift;alt;cmd ${rightthird} | |
bind .:shift;cmd ${bottomright} | |
bind p:shift;cmd ${topright} | |
# Nudge Bindings | |
bind l:shift;alt nudge +1% +0 | |
bind h:shift;alt nudge -1% +0 | |
bind k:shift;alt nudge +0 -1% | |
bind j:shift;alt nudge +0 +1% | |
# display switching | |
bind right:shift;cmd throw right resize | |
bind left:shift;cmd throw left resize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment