Skip to content

Instantly share code, notes, and snippets.

@pepe
Created March 11, 2016 08:49
Show Gist options
  • Save pepe/871705f7f81651940f8e to your computer and use it in GitHub Desktop.
Save pepe/871705f7f81651940f8e to your computer and use it in GitHub Desktop.
Time giving hammerspoon snippet
-- Quit Slack, then run it after 30 minutes
hs.hotkey.bind({"ctrl", "alt", "cmd", "shift"}, "L", function()
hs.alert.show(" No Slacking", 0.5)
hs.application.find("Slack"):kill()
hs.timer.doAfter(1800, function()
hs.application.launchOrFocus("Slack")
hs.alert.show(" Slacking", 0.5)
end)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment