Hilbish/nature/opts/motd.lua

13 lines
292 B
Lua
Raw Normal View History

2022-07-09 21:54:21 +00:00
local bait = require 'bait'
local lunacolors = require 'lunacolors'
hilbish.motd = [[
2024-08-16 19:25:35 +00:00
{magenta}Hilbish{reset} blooms in the {blue}midnight.{reset}
2022-07-09 21:54:21 +00:00
]]
bait.catch('hilbish.init', function()
2022-08-17 22:05:20 +00:00
if hilbish.interactive and hilbish.opts.motd then
2022-07-09 21:54:21 +00:00
print(lunacolors.format(hilbish.motd))
end
end)