Skip to content

Instantly share code, notes, and snippets.

@seveibar
Created May 28, 2015 11:19
Show Gist options
  • Save seveibar/16f8155429569c3ee197 to your computer and use it in GitHub Desktop.
Save seveibar/16f8155429569c3ee197 to your computer and use it in GitHub Desktop.
# This is the default .slate file.
# If no ~/.slate file exists this is the file that will be used.
config defaultToCurrentScreen true
config nudgePercentOf screenSize
config resizePercentOf screenSize
alias full move screenOriginX;screenOriginY screenSizeX;screenSizeY
alias lefthalf move screenOriginX;screenOriginY screenSizeX/2;screenSizeY
alias righthalf move screenOriginX+screenSizeX/2;screenOriginY screenSizeX/2;screenSizeY
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
# Resize Bindings
bind right:alt resize +10% +0
bind left:alt resize -10% +0
bind up:alt resize +0 -10%
bind down:alt resize +0 +10%
bind right:ctrl;alt resize -10% +0 bottom-right
bind left:ctrl;alt resize +10% +0 bottom-right
bind up:ctrl;alt resize +0 +10% bottom-right
bind down:ctrl;alt resize +0 -10% bottom-right
# Push Bindings
bind right:shift;cmd push right bar-resize:screenSizeX/2
bind d:shift;cmd push right bar-resize:screenSizeX/2
bind left:shift;cmd push left bar-resize:screenSizeX/2
bind a:shift;cmd push left bar-resize:screenSizeX/2
bind up:shift;cmd push up bar-resize:screenSizeY/2
bind down:shift;cmd push down bar-resize:screenSizeY/2
bind w:shift;cmd push up bar-resize:screenSizeY
bind q:shift;cmd ${topleft}
bind e:shift;cmd ${topright}
bind q:shift;alt ${bottomleft}
bind e:shift;alt ${bottomright}
# Nudge Bindings
bind right:shift;alt nudge +10% +0
bind left:shift;alt nudge -10% +0
bind up:shift;alt nudge +0 -10%
bind down:shift;alt nudge +0 +10%
# Throw Bindings
bind 1:ctrl;alt throw 0 resize
bind 2:ctrl;alt throw 1 resize
bind 3:ctrl;alt throw 2 resize
bind right:ctrl;alt;cmd throw right resize
bind left:ctrl;alt;cmd throw left resize
bind up:ctrl;alt;cmd throw up resize
bind down:ctrl;alt;cmd throw down resize
# Focus Bindings
bind right:cmd focus right
bind left:cmd focus left
bind up:cmd focus up
bind down:cmd focus down
bind up:cmd;alt focus behind
bind down:cmd;alt focus behind
# Window Hints
bind esc:cmd hint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment