-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
136 lines (116 loc) · 3.29 KB
/
init.lua
File metadata and controls
136 lines (116 loc) · 3.29 KB
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
local hotkey = require "hs.hotkey"
local window = require "hs.window"
local application = require "hs.application"
local hints = require "hs.hints"
window.animationDuration = 0
hints.style = "vimperator"
hints.showTitleThresh = 30
hints.fontSize = 15.0
hotkey.bind({"cmd"}, "J", function()
hints.windowHints()
end)
local apps = {
{ key = "c", app = "google chrome" },
{ key = "v", app = "MacVim" },
{ key = "s", app = "slack" },
{ key = "t", app = "iterm" },
{ key = "a", app = "the archive" },
{ key = "x", app = "textedit" }
}
for i, object in ipairs(apps) do
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, object.key, function()
application.launchOrFocus(object.app)
end)
end
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "1", function()
-- move the focused window one display to the left
local win = window.focusedWindow()
win:moveOneScreenWest()
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "2", function()
-- move the focused window one display to the right
local win = window.focusedWindow()
win:moveOneScreenEast()
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "h", function()
-- size focused window to left half of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x
f.y = max.y
f.w = max.w / 2
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "l", function()
-- size focused window to right half of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x + (max.w / 2)
f.y = max.y
f.w = max.w / 2
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "j", function()
-- size focused window to left 40% of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x
f.y = max.y
f.w = 4 * max.w / 10
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "k", function()
-- size focused window to right 60% of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x + (4 * max.w / 10)
f.y = max.y
f.w = 6 * max.w / 10
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, ";", function()
-- size focused window to left 60% of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x
f.y = max.y
f.w = 6 * max.w / 10
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "'", function()
-- size focused window to right 40% of display
local win = window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local max = screen:frame()
f.x = max.x + (6 * max.w / 10)
f.y = max.y
f.w = 4 * max.w / 10
f.h = max.h
win:setFrame(f)
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "m", function()
-- maximuze focused window to cover whole screen
local win = window.focusedWindow()
win:maximize()
end)
hotkey.bind({"cmd", "alt", "ctrl", "shift"}, "o", function()
-- center focused window on screen
local win = window.focusedWindow()
win:centerOnScreen()
end)