-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.lua
More file actions
56 lines (44 loc) · 1.26 KB
/
utils.lua
File metadata and controls
56 lines (44 loc) · 1.26 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
utils = {}
utils.__index = utils
local fixBundle = {
["com.google.chrome"] = "com.google.Chrome",
["com.apple.safari"] = "com.apple.Safari",
}
-- Open and focus the default browser.
-- @return browser instance
function utils.focusBrowser()
local defaultBrowser = hs.urlevent.getDefaultHandler("http")
-- Bundle ID returned for Chrome and Safari is wrong
-- Use fixBundle table to correct it.
browserBundleID = fixBundle[defaultBrowser]
if not browserBundleID then
browserBundleID = defaultBrowser
end
local browser = hs.application.open(browserBundleID, 1, true)
browser:activate()
return browser
end
function utils.notify(title, subTitle, info, tag)
local params = {
title = title,
subTitle= subTitle,
informativeText = info
}
local notify = hs.notify.new(tag, params)
notify:send()
end
function utils.pushToScreen(win, screen)
local screen = screen or win:screen()
if screen == win:screen() then return end
local fullscreenChange = win:isFullScreen()
if fullscreenChange then
id = win:id()
win:toggleFullScreen()
os.execute('sleep 3')
win = hs.window.windowForID(id)
if not win then return end
end
win:moveToScreen(screen)
if fullscreenChange then win:toggleFullScreen() end
end
return utils