2022-07-09 21:54:21 +00:00
|
|
|
local bait = require 'bait'
|
|
|
|
local lunacolors = require 'lunacolors'
|
|
|
|
|
|
|
|
hilbish.motd = [[
|
2024-11-04 10:51:31 +00:00
|
|
|
Wait ... {magenta}2.3{reset} is basically the same as {red}2.2?{reset}
|
|
|
|
Erm.. {blue}Ctrl-C works for Commanders,{reset} {cyan}and the sh runner has some fixes.{reset}
|
|
|
|
Just trust me bro, this is an important bug fix release. {red}- 🌺 sammyette{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)
|