Skip to content

Instantly share code, notes, and snippets.

@alex-pat
Created January 9, 2019 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-pat/75280a1b38b73f94dc7740e2baace231 to your computer and use it in GitHub Desktop.
Save alex-pat/75280a1b38b73f94dc7740e2baace231 to your computer and use it in GitHub Desktop.
awesome wm useful timer
gears.timer.start_new(60, function()
if os.date("*t").hour >= 23 then
naughty.notify({
text = "It's too late!",
title = "Go sleep!",
position = "top_right",
timeout = 60,
bg = "#f06060",
fg = "#EEE9EF",
widht = 200,
})
end
return true
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment