Created
March 11, 2016 08:49
-
-
Save pepe/871705f7f81651940f8e to your computer and use it in GitHub Desktop.
Time giving hammerspoon snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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