Skip to content

Instantly share code, notes, and snippets.

@syphoxy
Created March 8, 2018 01:17
Show Gist options
  • Save syphoxy/40e68422f7281831684803cf701b9a2a to your computer and use it in GitHub Desktop.
Save syphoxy/40e68422f7281831684803cf701b9a2a to your computer and use it in GitHub Desktop.
small script that sets up a 10 minute reminder to keep hydrated
-- ~/.config/awesome/rc.lua
gears.timer {
timeout = 60 * 10,
autostart = true,
callback = function ()
naughty.notify {
title = "Reminder!",
text = "Have you drank water recently?",
}
end
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment