2
2
鏡像自 https://github.com/Hilbis/Hilbish synced 2025-07-03 17:52:02 +00:00
Hilbish/nature/opts/motd.lua
2022-07-09 17:54:21 -04:00

14 行
348 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.opts.motd then
print(lunacolors.format(hilbish.motd))
end
end)