Files
Halyde/halyde/config/shell.cfg
T
2025-04-27 18:25:12 +03:00

19 lines
736 B
INI

local shellcfg = {
["startupMessage"] = "\n │\n │ ".._OSVERSION..'\n │ Welcome! Type "help" to get started.\n │\n ', -- message shown on startup
["prompt"] = "\x1b[92m%s > \x1b[0m", -- shell prompt, %s will be replaced with working directory. example: "%s > " turns to "/current/working/directory > "
["path"] = { -- default locations where programs will be run from
"/halyde/apps/"
}, ["aliases"] = { -- shell command aliases
["copy"] = "cp",
["move"] = "mv",
["rename"] = "mv",
["ren"] = "mv",
["dir"] = "ls",
["man"] = "help",
["del"] = "rm",
[".."] = "cd .."
}, ["defaultWorkingDirectory"] = "/home/" -- the working directory that gets set when halyde starts
}
return shellcfg