This commit is contained in:
UndeadMaelys
2022-03-31 10:09:28 +02:00
parent 95c0ce5062
commit 38fb2f7a51
7 changed files with 113 additions and 23 deletions

View File

@@ -49,3 +49,7 @@ end
function colorTextBackground(Color, Text)
return "\027[48;5;"..tostring(Color-1).."m"..Text.."\027[0;m"
end
function scrollTerminalUp(amount)
return "\027["..amount.."T"
end