forked from jigish/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slate.js
251 lines (231 loc) · 9.08 KB
/
slate.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// Configs
S.cfga({
"defaultToCurrentScreen" : true,
"secondsBetweenRepeat" : 0.1,
"checkDefaultsOnLoad" : true,
"focusCheckWidthMax" : 3000,
"orderScreensLeftToRight" : true
});
// Monitors
var monTboltL = "0";
var monTboltR = "2";
var monLaptop = "1680x1050";
// Operations
var lapChat = S.op("corner", {
"screen" : monLaptop,
"direction" : "top-left",
"width" : "screenSizeX/9",
"height" : "screenSizeY"
});
var lapMain = lapChat.dup({ "direction" : "top-right", "width" : "8*screenSizeX/9" });
var tboltLFull = S.op("move", {
"screen" : monTboltL,
"x" : "screenOriginX",
"y" : "screenOriginY",
"width" : "screenSizeX",
"height" : "screenSizeY"
});
var tboltLLeft = tboltLFull.dup({ "width" : "screenSizeX/3" });
var tboltLMid = tboltLLeft.dup({ "x" : "screenOriginX+screenSizeX/3" });
var tboltLRight = tboltLLeft.dup({ "x" : "screenOriginX+(screenSizeX*2/3)" });
var tboltLLeftTop = tboltLLeft.dup({ "height" : "screenSizeY/2" });
var tboltLLeftBot = tboltLLeftTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
var tboltLMidTop = tboltLMid.dup({ "height" : "screenSizeY/2" });
var tboltLMidBot = tboltLMidTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
var tboltLRightTop = tboltLRight.dup({ "height" : "screenSizeY/2" });
var tboltLRightBot = tboltLRightTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
var tboltRFull = S.op("move", {
"screen" : monTboltR,
"x" : "screenOriginX",
"y" : "screenOriginY",
"width" : "screenSizeX",
"height" : "screenSizeY"
});
var tboltRLeft = tboltRFull.dup({ "width" : "screenSizeX/3" });
var tboltRMid = tboltRLeft.dup({ "x" : "screenOriginX+screenSizeX/3" });
var tboltRRight = tboltRLeft.dup({ "x" : "screenOriginX+(screenSizeX*2/3)" });
var tboltRLeftTop = tboltRLeft.dup({ "height" : "screenSizeY/2" });
var tboltRLeftBot = tboltRLeftTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
var tboltRMidTop = tboltRMid.dup({ "height" : "screenSizeY/2" });
var tboltRMidBot = tboltRMidTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
var tboltRRightTop = tboltRRight.dup({ "height" : "screenSizeY/2" });
var tboltRRightBot = tboltRRightTop.dup({ "y" : "screenOriginY+screenSizeY/2" });
// common layout hashes
var lapMainHash = {
"operations" : [lapMain],
"ignore-fail" : true,
"repeat" : true
};
var adiumHash = {
"operations" : [lapChat, lapMain],
"ignore-fail" : true,
"title-order" : ["Contacts"],
"repeat-last" : true
};
var mvimHash = {
"operations" : [tboltLRight, tboltRLeft],
"repeat" : true
};
var iTermHash = {
"operations" : [tboltLMidTop, tboltLMidBot, tboltRMidTop, tboltRMidBot],
"sort-title" : true,
"repeat" : true
};
var genBrowserHash = function(regex) {
return {
"operations" : [function(windowObject) {
var title = windowObject.title();
if (title !== undefined && title.match(regex)) {
windowObject.doOperation(tboltLLeft);
} else {
windowObject.doOperation(lapMain);
}
}],
"ignore-fail" : true,
"repeat" : true
};
}
// 3 monitor layout
var threeMonitorLayout = S.lay("threeMonitor", {
"Adium" : {
"operations" : [lapChat, tboltLLeftBot],
"ignore-fail" : true,
"title-order" : ["Contacts"],
"repeat-last" : true
},
"MacVim" : mvimHash,
"iTerm" : iTermHash,
"Google Chrome" : genBrowserHash(/^Developer\sTools\s-\s.+$/),
"GitX" : {
"operations" : [tboltLLeftTop],
"repeat" : true
},
"Firefox" : genBrowserHash(/^Firebug\s-\s.+$/),
"Safari" : lapMainHash,
"Spotify" : {
"operations" : [tboltRRightTop],
"repeat" : true
}
});
// 1 monitor layout
var oneMonitorLayout = S.lay("oneMonitor", {
"Adium" : adiumHash,
"MacVim" : lapMainHash,
"iTerm" : lapMainHash,
"Google Chrome" : lapMainHash,
"Xcode" : lapMainHash,
"Flex Builder" : lapMainHash,
"GitX" : lapMainHash,
"Ooyala Player Debug Console" : lapMainHash,
"Firefox" : lapMainHash,
"Safari" : lapMainHash,
"Eclipse" : lapMainHash,
"Spotify" : lapMainHash
});
var twoMonitorLayout = oneMonitorLayout;
// Defaults
S.def(3, threeMonitorLayout);
S.def(2, twoMonitorLayout);
S.def(1, oneMonitorLayout);
// Layout Operations
var threeMonitor = S.op("layout", { "name" : threeMonitorLayout });
var twoMonitor = S.op("layout", { "name" : twoMonitorLayout });
var oneMonitor = S.op("layout", { "name" : oneMonitorLayout });
var universalLayout = function() {
// Should probably make sure the resolutions match but w/e
S.log("SCREEN COUNT: "+S.screenCount());
if (S.screenCount() === 3) {
threeMonitor.run();
} else if (S.screenCount() === 2) {
twoMonitor.run();
} else if (S.screenCount() === 1) {
oneMonitor.run();
}
};
// Batch bind everything. Less typing.
S.bnda({
// Layout Bindings
"padEnter:ctrl" : universalLayout,
"space:ctrl" : universalLayout,
// Basic Location Bindings
"pad0:ctrl" : lapChat,
"[:ctrl" : lapChat,
"pad.:ctrl" : lapMain,
"]:ctrl" : lapMain,
"pad1:ctrl" : tboltLLeftBot,
"pad2:ctrl" : tboltLMidBot,
"pad3:ctrl" : tboltLRightBot,
"pad4:ctrl" : tboltLLeftTop,
"pad5:ctrl" : tboltLMidTop,
"pad6:ctrl" : tboltLRightTop,
"pad7:ctrl" : tboltLLeft,
"pad8:ctrl" : tboltLMid,
"pad9:ctrl" : tboltLRight,
"pad=:ctrl" : tboltLFull,
"pad1:alt" : tboltRLeftBot,
"pad2:alt" : tboltRMidBot,
"pad3:alt" : tboltRRightBot,
"pad4:alt" : tboltRLeftTop,
"pad5:alt" : tboltRMidTop,
"pad6:alt" : tboltRRightTop,
"pad7:alt" : tboltRLeft,
"pad8:alt" : tboltRMid,
"pad9:alt" : tboltRRight,
"pad=:alt" : tboltRFull,
// Resize Bindings
// NOTE: some of these may *not* work if you have not removed the expose/spaces/mission control bindings
"right:ctrl" : S.op("resize", { "width" : "+10%", "height" : "+0" }),
"left:ctrl" : S.op("resize", { "width" : "-10%", "height" : "+0" }),
"up:ctrl" : S.op("resize", { "width" : "+0", "height" : "-10%" }),
"down:ctrl" : S.op("resize", { "width" : "+0", "height" : "+10%" }),
"right:alt" : S.op("resize", { "width" : "-10%", "height" : "+0", "anchor" : "bottom-right" }),
"left:alt" : S.op("resize", { "width" : "+10%", "height" : "+0", "anchor" : "bottom-right" }),
"up:alt" : S.op("resize", { "width" : "+0", "height" : "+10%", "anchor" : "bottom-right" }),
"down:alt" : S.op("resize", { "width" : "+0", "height" : "-10%", "anchor" : "bottom-right" }),
// Push Bindings
// NOTE: some of these may *not* work if you have not removed the expose/spaces/mission control bindings
"right:ctrl;shift" : S.op("push", { "direction" : "right", "style" : "bar-resize:screenSizeX/3" }),
"left:ctrl;shift" : S.op("push", { "direction" : "left", "style" : "bar-resize:screenSizeX/3" }),
"up:ctrl;shift" : S.op("push", { "direction" : "up", "style" : "bar-resize:screenSizeY/2" }),
"down:ctrl;shift" : S.op("push", { "direction" : "down", "style" : "bar-resize:screenSizeY/2" }),
// Nudge Bindings
// NOTE: some of these may *not* work if you have not removed the expose/spaces/mission control bindings
"right:ctrl;alt" : S.op("nudge", { "x" : "+10%", "y" : "+0" }),
"left:ctrl;alt" : S.op("nudge", { "x" : "-10%", "y" : "+0" }),
"up:ctrl;alt" : S.op("nudge", { "x" : "+0", "y" : "-10%" }),
"down:ctrl;alt" : S.op("nudge", { "x" : "+0", "y" : "+10%" }),
// Throw Bindings
// NOTE: some of these may *not* work if you have not removed the expose/spaces/mission control bindings
"pad1:ctrl;alt" : S.op("throw", { "screen" : "2", "width" : "screenSizeX", "height" : "screenSizeY" }),
"pad2:ctrl;alt" : S.op("throw", { "screen" : "1", "width" : "screenSizeX", "height" : "screenSizeY" }),
"pad3:ctrl;alt" : S.op("throw", { "screen" : "0", "width" : "screenSizeX", "height" : "screenSizeY" }),
"right:ctrl;alt;cmd" : S.op("throw", { "screen" : "right", "width" : "screenSizeX", "height" : "screenSizeY" }),
"left:ctrl;alt;cmd" : S.op("throw", { "screen" : "left", "width" : "screenSizeX", "height" : "screenSizeY" }),
"up:ctrl;alt;cmd" : S.op("throw", { "screen" : "up", "width" : "screenSizeX", "height" : "screenSizeY" }),
"down:ctrl;alt;cmd" : S.op("throw", { "screen" : "down", "width" : "screenSizeX", "height" : "screenSizeY" }),
// Focus Bindings
// NOTE: some of these may *not* work if you have not removed the expose/spaces/mission control bindings
"l:cmd" : S.op("focus", { "direction" : "right" }),
"h:cmd" : S.op("focus", { "direction" : "left" }),
"k:cmd" : S.op("focus", { "direction" : "up" }),
"j:cmd" : S.op("focus", { "direction" : "down" }),
"k:cmd;alt" : S.op("focus", { "direction" : "behind" }),
"j:cmd;alt" : S.op("focus", { "direction" : "behind" }),
"right:cmd" : S.op("focus", { "direction" : "right" }),
"left:cmd" : S.op("focus", { "direction" : "left" }),
"up:cmd" : S.op("focus", { "direction" : "up" }),
"down:cmd" : S.op("focus", { "direction" : "down" }),
"up:cmd;alt" : S.op("focus", { "direction" : "behind" }),
"down:cmd;alt" : S.op("focus", { "direction" : "behind" }),
// Window Hints
"esc:cmd" : S.op("hint"),
// Switch currently doesn't work well so I'm commenting it out until I fix it.
//"tab:cmd" : S.op("switch"),
// Grid
"esc:ctrl" : S.op("grid")
});
// Test Cases
S.src(".slate.test", true);
S.src(".slate.test.js", true);
// Log that we're done configuring
S.log("[SLATE] -------------- Finished Loading Config --------------");