Hilbish/nature/opts/motd.lua

14 lines
385 B
Lua
Raw Permalink Normal View History

2022-07-09 21:54:21 +00:00
local bait = require 'bait'
local lunacolors = require 'lunacolors'
hilbish.motd = [[
2023-12-24 23:04:08 +00:00
Finally at {red}v2.2!{reset} So much {green}documentation improvements{reset}
and 1 single fix for Windows! {blue}.. and a feature they can't use.{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)