c795b627a067c5519b910c3d759ad8153a256aa7
[dotfiles.git] / hammerspoon / init.lua
1 -- Sample Hello World 
2 hs.hotkey.bind({"cmd", "alt", "ctrl"}, "W", function()
3   hs.notify.new({title="Hammerspoon", informativeText="Hello World"}):send()
4 --  hs.alert.show("Hello World!")
5 end)
6
7 -- Reload configuration
8 hs.hotkey.bind({"cmd", "alt", "ctrl"}, "R", function()
9   hs.reload()
10 end)
11 hs.alert.show("Config loaded")
12
13
14 -- Sample - Drawing on the screen - http://www.hammerspoon.org/go/#simplereload
15 mouseCircle = nil
16 mouseCircleTimer = nil
17
18 function mouseHighlight()
19     -- Delete an existing highlight if it exists
20     if mouseCircle then
21         mouseCircle:delete()
22         if mouseCircleTimer then
23             mouseCircleTimer:stop()
24         end
25     end
26     -- Get the current co-ordinates of the mouse pointer
27     mousepoint = hs.mouse.getAbsolutePosition()
28     -- Prepare a big red circle around the mouse pointer
29     mouseCircle = hs.drawing.circle(hs.geometry.rect(mousepoint.x-40, mousepoint.y-40, 80, 80))
30     mouseCircle:setStrokeColor({["red"]=1,["blue"]=0,["green"]=0,["alpha"]=1})
31     mouseCircle:setFill(false)
32     mouseCircle:setStrokeWidth(5)
33     mouseCircle:show()
34
35     -- Set a timer to delete the circle after 3 seconds
36     mouseCircleTimer = hs.timer.doAfter(3, function() mouseCircle:delete() end)
37 end
38 hs.hotkey.bind({"cmd","alt","shift"}, "D", mouseHighlight)
39
40
41 -- window movement
42 hs.hotkey.bind({"cmd", "alt", "ctrl"}, "H", function()
43   local win = hs.window.focusedWindow()
44   local f = win:frame()
45
46   f.x = f.x - 10
47   win:setFrame(f)
48 end)
49
50 -- Window Movement
51 -- https://andrich.blog/2016/11/20/hammerspoon-an-awesome-tool-to-automate-your-mac/
52 -- CTRL + ALT + Left - Move current window to the left half of the screen.
53 -- CTRL + ALT + Right - Move current window to the right half of the screen.
54 -- CTRL + ALT + Up - Go "fullscreen".
55 -- CTRL + ALT + Down - Center window, covering 2/3 of screen size.
56 --
57  
58 function move_window(direction)
59     return function()
60         local win      = hs.window.focusedWindow()
61         local app      = win:application()
62         local app_name = app:name()
63         local f        = win:frame()
64         local screen   = win:screen()
65         local max      = screen:frame()
66  
67         if direction == "left" then
68             f.x = max.x
69             f.y = max.y
70             f.w = max.w / 2
71             f.h = max.h
72         elseif direction == "right" then
73             f.x = max.x + (max.w / 2)
74             f.y = max.y
75             f.w = max.w / 2
76             f.h = max.h
77         elseif direction == "up" then
78             f.x = max.x
79             f.y = max.y 
80             f.w = max.w
81             f.h = max.h / 2
82         elseif direction == "down" then
83             f.x = max.x 
84             f.y = max.y + (max.h / 2)
85             f.w = max.w 
86             f.h = max.h / 2
87         elseif direction == "max" then
88             f.x = max.x 
89             f.y = max.y
90             f.w = max.w 
91             f.h = max.h
92         elseif direction == "center" then
93             f.x = max.x + (max.w / 6)
94             f.y = max.y + (max.h / 6)
95             f.w = max.w * 2 / 3
96             f.h = max.h * 2 / 3
97         else
98             hs.alert.show("move_window(): Freaky parameter received " .. direction)
99         end
100  
101         win:setFrame(f, 0)
102     end
103 end
104  
105 local hyper = {"ctrl", "alt"}
106 hs.hotkey.bind(hyper, "h", move_window("left"))
107 hs.hotkey.bind(hyper, "l", move_window("right"))
108 hs.hotkey.bind(hyper, "k", move_window("up"))
109 hs.hotkey.bind(hyper, "j", move_window("down"))
110 hs.hotkey.bind(hyper, "m", move_window("max"))
111 hs.hotkey.bind(hyper, "c", move_window("center"))
112
113 -- Search and dictionary
114 -- Past and copy
115 -- App quick startup
116
117 -- Use SpoonInstall,
118 -- http://zzamboni.org/post/using-spoons-in-hammerspoon/
119 -- https://github.com/Hammerspoon/Spoons/raw/master/Spoons/SpoonInstall.spoon.zip
120 if hs.spoons == nil then
121    hs.spoons=require('hs.spoons')
122 end
123
124
125 hs.loadSpoon ("SpoonInstall")
126 spoon.SpoonInstall.use_syncinstall = true
127 INSTALL = spoon.SpoonInstall
128
129 --------------------------------------------------------------------------------
130 -- MouseCircle  http://www.hammerspoon.org/Spoons/MouseCircle.html
131 INSTALL:andUse("MouseCircle",
132                 {
133                    disable = false,
134                    config = {
135                       color = hs.drawing.color.x11.rebeccapurple
136                    },
137                    hotkeys = {
138                       show = { {"cmd", "alt", "ctrl"}, "m"}
139                    }
140                 }
141 )
142
143 --------------------------------------------------------------------------------
144 -- TextClipboardHistory
145 INSTALL:andUse("TextClipboardHistory",
146                {
147                   config = {
148                      show_in_menubar = false,
149                   },
150                   hotkeys = {
151                      toggle_clipboard = { { "cmd", "shift" }, "v"}
152                   },
153                   start = true;
154                }
155 )
156
157
158 --------------------------------------------------------------------------------
159 -- Seal -- http://www.hammerspoon.org/Spoons/Seal.html
160 INSTALL:andUse("Seal",
161                {
162                   hotkeys = { show = { {"cmd", "ctrl", "alt"}, "space" } },
163                   fn = function(s)
164                      s:loadPlugins({"apps", "calc", "safari_bookmarks", "screencapture", "useractions"})
165                      s.plugins.safari_bookmarks.always_open_with_safari = false
166                      s.plugins.useractions.actions =
167                         {
168                            ["Hammerspoon docs webpage"] = {
169                               url = "http://hammerspoon.org/docs/",
170                               icon = hs.image.imageFromName(hs.image.systemImageNames.ApplicationIcon),
171                               -- hotkey = { hyper, "h" }
172                            },
173                            ["Leave corpnet"] = {
174                               fn = function()
175                                  spoon.WiFiTransitions:processTransition('foo', 'corpnet01')
176                               end,
177                               icon = swisscom_logo,
178                            },
179                            ["Arrive in corpnet"] = {
180                               fn = function()
181                                  spoon.WiFiTransitions:processTransition('corpnet01', 'foo')
182                               end,
183                               icon = swisscom_logo,
184                            },
185                            ["Translate using Leo"] = {
186                               url = "http://dict.leo.org/ende/index_de.html#/search=${query}",
187                               icon = 'favicon',
188                               keyword = "leo",
189                            },
190                            ["Tell me something"] = {
191                               keyword = "tellme",
192                               fn = function(str) hs.alert.show(str) end,
193                            }
194                         }
195                      s:refreshAllCommands()
196                   end,
197                   start = true,
198                }
199 )