mirror of
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			292 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			292 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local bait = require 'bait'
 | 
						|
local lunacolors = require 'lunacolors'
 | 
						|
 | 
						|
hilbish.motd = [[
 | 
						|
{magenta}Hilbish{reset} blooms in the {blue}midnight.{reset}
 | 
						|
]]
 | 
						|
 | 
						|
bait.catch('hilbish.init', function()
 | 
						|
	if hilbish.interactive and hilbish.opts.motd then
 | 
						|
		print(lunacolors.format(hilbish.motd))
 | 
						|
	end
 | 
						|
end)
 |