-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslate
31 lines (26 loc) · 1.29 KB
/
slate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
config defaultToCurrentScreen true
# Shows app icons and background apps, spreads icons in the same place.
config windowHintsShowIcons true
config windowHintsIgnoreHiddenWindows false
config windowHintsSpread true
# bind p:cmd hint QWERTYUIOPASDFGHJKL # use whatever keys you want
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 tophalf move screenOriginX;screenOriginY screenSizeX;screenSizeY/2
alias bottomhalf move screenOriginX;screenOriginY+screenSizeY/2 screenSizeX;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
bind b:cmd;alt focus 'Google Chrome'
# bind i:cmd;alt focus 'iTerm'
bind right:cmd;alt;ctrl ${righthalf}
bind left:cmd;alt;ctrl ${lefthalf}
bind up:cmd;alt;ctrl ${tophalf}
bind down:cmd;alt;ctrl ${bottomhalf}
bind m:cmd;alt;ctrl ${full}
bind .:cmd;alt;ctrl ${bottomright}
bind ,:cmd;alt;ctrl ${bottomleft}
bind k:cmd;alt;ctrl ${topleft}
bind l:cmd;alt;ctrl ${topright}