-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathslate.js
163 lines (145 loc) · 3.65 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
S.configAll({
"defaultToCurrentScreen" : true,
"checkDefaultsOnLoad" : true,
"orderScreensLeftToRight" : false
});
function bindAll() {
/*
* Quick app switching and launching
* hyper + key to launch app or switch to it.
* Use Karabiner to create hyper key, I use holding ';'.
*/
bindQuickSwitch({
"a:hyper" : "Atom",
"c:hyper" : "Google Chrome",
"f:hyper" : "Firefox",
"i:hyper" : "iTerm",
"e:hyper" : "Emacs",
"m:hyper" : "Messages",
"s:hyper" : "Safari",
"z:hyper" : "Slack"
});
/*
* Size and move windows
* Press binding twice to toggle between screens
*/
bindWindowSizes({
"i:ctrl,cmd" : "fullscreen",
"h:ctrl,cmd" : "left",
"k:ctrl,cmd" : "top",
"l:ctrl,cmd" : "right",
"j:ctrl,cmd" : "bottom",
",:ctrl,cmd" : "bottomLeft",
".:ctrl,cmd" : "bottomRight",
"l:ctrl,cmd,shift" : "rightThird",
"h:ctrl,cmd,shift" : "leftTwoThirds"
});
/*
* Miscellaneous bindings
*/
S.bindAll({
"`:ctrl" : S.op("relaunch")
});
}
var fullscreen = {
"x" : "screenOriginX",
"y" : "screenOriginY",
"width" : "screenSizeX",
"height" : "screenSizeY"
};
var windowSizes = createWindowSizes(fullscreen, {
"fullscreen" : {},
"left" : { "width" : "screenSizeX / 2" },
"topLeft" : {
"width" : "screenSizeX / 2",
"height" : "screenSizeY / 2"
},
"top" : { "height" : "screenSizeY / 2" },
"topRight" : {
"x" : "screenOriginX + screenSizeX / 2",
"width" : "screenSizeX / 2",
"height" : "screenSizeY / 2"
},
"right" : {
"x" : "screenOriginX + screenSizeX / 2",
"width" : "screenSizeX / 2"
},
"bottomRight" : {
"x" : "screenOriginX + screenSizeX / 2",
"y" : "screenOriginY + screenSizeY / 2",
"width" : "screenSizeX / 2",
"height" : "screenSizeY / 2"
},
"bottom" : {
"y" : "screenOriginY + screenSizeY / 2",
"height" : "screenSizeY / 2"
},
"bottomLeft" : {
"y" : "screenOriginY + screenSizeY / 2",
"width" : "screenSizeX / 2",
"height" : "screenSizeY / 2"
},
"rightThird" : {
"x" : "screenOriginX + screenSizeX * 7 / 12",
"width" : "screenSizeX * 5 / 12"
},
"leftTwoThirds" : { "width" : "screenSizeX * 7 / 12" },
"middleHalf" : {
"x" : "screenOriginX + screenSizeX / 4",
"width" : "screenSizeX / 2"
},
});
var harvestTasks = {
"Tch" : {
"project_id" : "",
"task_id" : ""
}
}
function bindWindowSizes(bindings) {
_.each(bindings, function(size, key) {
key = expandModifiers(key);
S.bind(key, function(win) {
if (!win) return false;
var origRect = win.rect();
var move = S.op("move", windowSizes[size]);
win.doOperation(move);
if (rectEq(origRect, win.rect())) {
move = move.dup({ "screen" : "next" });
win.doOperation(move);
}
});
});
};
function bindQuickSwitch(bindings) {
_.each(bindings, function(app, key) {
var appPath = "'/Applications/" + app + ".app'"
key = expandModifiers(key);
S.bind(key, function() {
S.op("focus", { "app" : app }).run() ||
S.shell("/usr/bin/open " + appPath);
});
});
}
/*
* Utility functions
*/
function rectEq(a, b) {
return a.x === b.x &&
a.y === b.y &&
a.width === b.width &&
a.height === b.height;
}
// Merge each size into the fullscreen size provided
function createWindowSizes(fullscreen, sizes) {
windowSizes = {};
_.each(sizes, function(size, name) {
windowSizes[name] = _.extend({}, fullscreen, size);
});
return windowSizes;
}
function expandModifiers(bind) {
return bind
.replace("hyper", "ctrl,cmd,alt,shift")
.replace("super", "ctrl,cmd,alt");
}
bindAll();