2021-03-20 00:28:22 +00:00
|
|
|
-- Default Hilbish config
|
2021-05-01 20:18:11 +00:00
|
|
|
lunacolors = require 'lunacolors'
|
2021-03-30 23:48:37 +00:00
|
|
|
bait = require 'bait'
|
2021-03-20 22:51:51 +00:00
|
|
|
|
2021-03-30 23:48:37 +00:00
|
|
|
function doPrompt(fail)
|
2021-05-01 20:18:11 +00:00
|
|
|
prompt(lunacolors.format(
|
|
|
|
'{blue}%u {cyan}%d ' .. (fail and '{red}' or '{green}') .. '∆ '
|
2021-03-30 23:48:37 +00:00
|
|
|
))
|
|
|
|
end
|
|
|
|
|
2021-05-16 21:37:53 +00:00
|
|
|
print(lunacolors.format('Welcome to {magenta}Hilbish{reset}, {cyan}' .. hilbish.user
|
|
|
|
.. '{reset}.\n' .. 'The nice lil shell for {blue}Lua{reset} fanatics!\n'))
|
2021-04-03 17:14:14 +00:00
|
|
|
|
2021-03-30 23:48:37 +00:00
|
|
|
doPrompt()
|
|
|
|
|
2021-04-05 21:27:55 +00:00
|
|
|
bait.catch('command.exit', function(code)
|
|
|
|
doPrompt(code ~= 0)
|
2021-03-30 23:48:37 +00:00
|
|
|
end)
|
2021-03-20 22:51:51 +00:00
|
|
|
|