Compare commits
7 Commits
47266c6667
...
018859d979
Author | SHA1 | Date | |
---|---|---|---|
018859d979 | |||
8223537cb7 | |||
a596386d7b | |||
e59cefa041 | |||
542f0533e5 | |||
9500a6dc6f | |||
b14eac07de |
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -65,9 +65,9 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
||||
|
||||
[[package]]
|
||||
name = "bstr"
|
||||
version = "1.11.1"
|
||||
version = "1.11.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8"
|
||||
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"serde",
|
||||
@ -81,9 +81,9 @@ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.2.6"
|
||||
version = "1.2.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
|
||||
checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7"
|
||||
dependencies = [
|
||||
"shlex",
|
||||
]
|
||||
@ -549,9 +549,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.93"
|
||||
version = "2.0.95"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
|
||||
checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 rhpidfyre
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -1,39 +1,39 @@
|
||||
--!strict
|
||||
|
||||
type term_color_func = (string) -> string
|
||||
|
||||
local function rainbowify(str: string, color_map: {term_color_func}): string
|
||||
local chars = str:split('')
|
||||
for i, char in chars do
|
||||
chars[i] = char ~= ' ' and color_map[i%5+1](char) or char
|
||||
end
|
||||
return table.concat(chars)
|
||||
end
|
||||
|
||||
local function rainbowify_foreground(message: string): string
|
||||
local parsed_terminal_message: {string} = {}
|
||||
local color_map = {
|
||||
return rainbowify(message, {
|
||||
TERMINAL.OUT.FOREGROUND.RED,
|
||||
TERMINAL.OUT.FOREGROUND.YELLOW,
|
||||
TERMINAL.OUT.FOREGROUND.GREEN,
|
||||
TERMINAL.OUT.FOREGROUND.BLUE,
|
||||
TERMINAL.OUT.FOREGROUND.MAGENTA,
|
||||
}
|
||||
|
||||
for i, char in message:split('') do
|
||||
table.insert(parsed_terminal_message, char ~= ' ' and color_map[i%5+1](char) or char)
|
||||
end
|
||||
return table.concat(parsed_terminal_message)
|
||||
})
|
||||
end
|
||||
|
||||
local function rainbowify_background(message: string): string
|
||||
local parsed_terminal_message: {string} = {}
|
||||
local color_map = {
|
||||
return rainbowify(message, {
|
||||
TERMINAL.OUT.BACKGROUND.RED,
|
||||
TERMINAL.OUT.BACKGROUND.YELLOW,
|
||||
TERMINAL.OUT.BACKGROUND.GREEN,
|
||||
TERMINAL.OUT.BACKGROUND.BLUE,
|
||||
TERMINAL.OUT.BACKGROUND.MAGENTA,
|
||||
}
|
||||
|
||||
for i, char in message:split('') do
|
||||
table.insert(parsed_terminal_message, char ~= ' ' and color_map[i%5+1](char) or char)
|
||||
end
|
||||
return table.concat(parsed_terminal_message)
|
||||
})
|
||||
end
|
||||
|
||||
print(rainbowify_foreground("Rainbow foreground"))
|
||||
print(rainbowify_background("Rainbow background"))
|
||||
print(
|
||||
TERMINAL.OUT.FOREGROUND.BLACK(rainbowify_background("Rainbow background with black text"))
|
||||
)
|
||||
print(
|
||||
TERMINAL.OUT.BACKGROUND.DARK_GREY(rainbowify_foreground("Rainbow foreground on a dark grey background"))
|
||||
)
|
40
luau/examples/system_info.luau
Normal file
40
luau/examples/system_info.luau
Normal file
@ -0,0 +1,40 @@
|
||||
--!strict
|
||||
|
||||
--scuffed fastfetch
|
||||
--"rapidfetch"
|
||||
|
||||
local arch_ascii_art = [[
|
||||
-`
|
||||
.o+`
|
||||
`ooo/
|
||||
`+oooo:
|
||||
`+oooooo:
|
||||
-+oooooo+:
|
||||
`/:-:++oooo+:
|
||||
`/++++/+++++++:
|
||||
`/++++++++++++++:
|
||||
`/+++ooooooooooooo/`
|
||||
./ooosssso++osssssso+`
|
||||
.oossssso-````/ossssss+`
|
||||
-osssssso. :ssssssso.
|
||||
:osssssss/ osssso+++.
|
||||
/ossssssss/ +ssssooo/-
|
||||
`/ossssso+/:- -:/+osssso+-
|
||||
`+sso+:-` `.-/+oso:
|
||||
`++:. `-/+/
|
||||
.` `/
|
||||
]]
|
||||
|
||||
local BOLD, CYAN = TERMINAL.OUT.FOREGROUND.BOLD, TERMINAL.OUT.FOREGROUND.CYAN
|
||||
local USER, HOST = BOLD(SHELL.SYSTEM.USERNAME), BOLD(SHELL.SYSTEM.HOSTNAME)
|
||||
|
||||
local IsArch = SHELL.SYSTEM.DISTRO == "Arch Linux"
|
||||
if IsArch then
|
||||
print(BOLD(CYAN(arch_ascii_art)))
|
||||
end
|
||||
print(IsArch and `{CYAN(USER)}@{CYAN(HOST)}` or `{USER}@{HOST}`)
|
||||
print("-----------------------")
|
||||
|
||||
for name, val in SHELL.SYSTEM do
|
||||
print(`{IsArch and BOLD(CYAN(name)) or BOLD(name)}: {val}`)
|
||||
end
|
@ -31,7 +31,7 @@ type SHELL = {
|
||||
VARS: {string},
|
||||
SET_VAR: (K: string, V: string) -> (),
|
||||
CURRENT_DIR: {
|
||||
FILE_NAME: string,
|
||||
NAME: string,
|
||||
},
|
||||
},
|
||||
PROCESS: {
|
||||
@ -103,10 +103,13 @@ type foreground_styles = {
|
||||
DARK_BLUE: (string) -> string,
|
||||
}
|
||||
type TERMINAL = {
|
||||
WRITE: (string) -> (),
|
||||
WRITE_ERROR: (string) -> (),
|
||||
WRITE_ERROR_LN: (string) -> (),
|
||||
OUT: {
|
||||
BACKGROUND: background_styles,
|
||||
FOREGROUND: foreground_styles
|
||||
}
|
||||
},
|
||||
}
|
||||
--------------------------------------------------------------------------------------------------------------------------------
|
||||
--------------------------------------------------------------------------------------------------------------------------------
|
Loading…
x
Reference in New Issue
Block a user