2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-05-14 00:03:22 +00:00
Hilbish/nature/opts/motd.lua
2022-08-17 18:05:20 -04:00

14 lines
372 B
Lua

local bait = require 'bait'
local lunacolors = require 'lunacolors'
hilbish.motd = [[
Hilbish 2.0 is a {red}major{reset} update! If your config doesn't work
anymore, that will definitely be why! A MOTD, very message, much day.
]]
bait.catch('hilbish.init', function()
if hilbish.interactive and hilbish.opts.motd then
print(lunacolors.format(hilbish.motd))
end
end)