You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
748 B
32 lines
748 B
fennel = require("fennel")
|
|
table.insert(package.loaders or package.searchers, fennel.searcher)
|
|
|
|
fennel.dofile("init.fnl", { allowedGlobals = false })
|
|
|
|
-- Debugging --
|
|
|
|
-- hs.hotkey.bind(mash, "d", function()
|
|
-- end)
|
|
|
|
-- Spoons --
|
|
|
|
hs.loadSpoon("Quitter")
|
|
spoon.Quitter.quitAppsAfter = {
|
|
-- mdls -name kMDItemCFBundleIdentifier -r /path/to/app
|
|
["com.apple.iChat"] = 600,
|
|
["com.freron.MailMate"] = 600,
|
|
["com.kapeli.dashdoc"] = 600,
|
|
["com.reederapp.macOS"] = 600,
|
|
["com.tinyspeck.slackmacgap"] = 600,
|
|
}
|
|
-- spoon.Quitter:start()
|
|
|
|
hs.loadSpoon("ReloadConfiguration")
|
|
spoon.ReloadConfiguration:start()
|
|
|
|
hs.notify.new({
|
|
title = "Hammerspoon",
|
|
informativeText = "Config loaded",
|
|
withdrawAfter = 2,
|
|
}):send()
|