2
3
şunun yansıması https://github.com/sammy-ette/Hilbish eşitlendi 2025-08-10 02:52:03 +00:00
Hilbish/nature/opts/greeting.lua
2023-04-01 17:56:07 -04:00

13 satır
352 B
Lua

local bait = require 'bait'
local lunacolors = require 'lunacolors'
bait.catch('hilbish.init', function()
if hilbish.interactive and type(hilbish.opts.greeting) == 'string' then
if os.date '%d' == '01' and os.date '%m' == '04' then
print('welcome to a shell, i think??')
else
print(lunacolors.format(hilbish.opts.greeting))
end
end
end)