greeting.lua
1-- greeting.lua
2-- Shows a random motivational greeting on startup.
3
4local matcha = require("matcha")
5
6local greetings = {
7 "Ready to tackle your inbox!",
8 "Let's get through those emails.",
9 "Inbox zero awaits!",
10 "You've got mail... probably.",
11 "Time to reply to that email from last week.",
12 "Email: the original social network.",
13}
14
15matcha.on("startup", function()
16 local pick = greetings[math.random(#greetings)]
17 matcha.notify(pick, 3)
18end)