v1.0.0 - Added Argentum as well as other major improvements and bugfixes.

This commit is contained in:
TheWahlolly
2025-05-18 19:16:30 +03:00
parent 521d52a26e
commit 95c235e65b
19 changed files with 951 additions and 42 deletions
+24 -4
View File
@@ -1,6 +1,6 @@
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 > "
["startupMessage"] = "\n │\n │ ".._OSVERSION..'\n │ %s\n │\n ', -- message shown on startup. %s will be replaced with splash message.
["prompt"] = "\x1b[92m%s > \x1b[0m", -- shell prompt. %s will be replaced with working directory.
["path"] = { -- default locations where programs will be run from
"/halyde/apps/"
}, ["aliases"] = { -- shell command aliases
@@ -14,8 +14,28 @@ local shellcfg = {
["del"] = "rm",
["delete"] = "rm",
["remove"] = "rm",
[".."] = "cd .."
}, ["defaultWorkingDirectory"] = "/home/" -- the working directory that gets set when halyde starts
[".."] = "cd ..",
["wget"] = "download",
["ag"] = "argentum"
}, ["defaultWorkingDirectory"] = "/home/", -- the working directory that gets set when halyde starts
["splashMessages"] = { -- messages shown on startup
"Made by John Haly- I mean Cerulean Blue.",
'Welcome! Type "help" to get started.',
"Also try KOCOS!",
"Welcome back, Commander. We have no idea what we're doing.",
"99.9% bug-free. The remaining 0.1% are features.",
"0 days since last error.",
"Everything is fine. The fire is decorative.",
"Please don't feed the background processes.",
"Also has fetch!",
"Anything red is no man's land. Trust me.",
"Machine...",
"Abort, Retry, Fail?",
"What's the deal with /argentum/store?",
"So cutting-edge you can't hold it in your hand.",
"Americans are the reason you see colors on-screen. I'm talking about ANSI escape codes, not politics.",
"Shoutout to Ponali!"
}
}
return shellcfg