new logos

This commit is contained in:
2026-01-30 18:49:15 -05:00
parent daf8653d29
commit 2d185f3a6b
13 changed files with 160 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
+
#
###
#####
######
; #####;
+##.#####
+##########
#############;
###############+
####### #######
.######; ;###;`".
.#######; ;#####.
#########. .########`
######' '######
;#### ####;
##' '##
#' `#

View File

@@ -0,0 +1,20 @@
.#%*
@=.+%:
*# -@###**+-. .:
.@. .---=+#%@@#=. .#%#%.
+@= :=#%%+.=@+ **
:%#. :*%#. =#
=@= -%
*@. :#
*% :#
.. +% -+
:%%%%% =+
-@- +%: *%#= :@+
@: -@: :+. %*.:## :@+
+# . .. :+ *@::*-%.: :*.-% . *# .@=
%+ : : . *#*%# +@=++. . *- :@-
%= .:. : *+ .: . =@
#* ** ##
-@ :% @-
**.:...........................%+.:..........:.+%
#####%#%%%%%%%%%%%%%%%%%%%%%%%#%%%%%%%%%%%%%%%%+

View File

@@ -0,0 +1,16 @@
:##.
#..#-::.
== .***###+- -**
+# :=*#+:+#.=+
#* -*= :*
.%= .*
%- .+
. *- .=
:##%+ . :+
.#. :#. :#*#. #=
+- . :+ @ -::- : *- -# %-
#.... - -###. .@=*.. := .%.
%. .. ..* . -#
#: # *-
-* *- :#
+#*###################%##########*

View File

@@ -0,0 +1,2 @@
# If logo should be displayed on the right instead of the center
display_on_right=false

View File

@@ -0,0 +1,16 @@
.. *. ..
*= +@* +*
.@#. -@@@= :#@.
=@@+ *@@@# +@@=
%@@%: *@@@# -%@@%
:@@@@+ *@@@# .*@@@@:
:*@@@%- *@@@# -@@@@*:
=%@@#. *@@@# .#@@%=
:=. :*@@= *@@@# =@@+: .=:
%@#=..*# +@@@# #*..=#@#
.@@@@+=# .%@%: #=+@@@@.
.....=# -@= *+...:.
-*%*-@= - =@-*%*-
-@*. -@%. :%@- :*@-
.#@#@*
-#-

View File

@@ -0,0 +1,16 @@
a8888b.
d888888b.
8P"YP"Y88
8|o||o|88
8' .88
8`._.' Y8.
d/ `8b.
.dP . Y8b.
d8:' " `::88b.
d8" `Y88b
:8P ' :888
8a. : _a88P
._/"Yaa_ : .| 88P|
\ YP" `| 8P `.
/ \._____.d| .'
`--..__)888888P`._.'

View File

@@ -0,0 +1,11 @@
.-.
.-'``(|||)
,`\ \ `-`.
/ \ '``-. `
.-. , `___:
(:::) : ___
`-` ` , :
\ / ,..-` ,
`./ / .-.`
`-..-( )
`-`

View File

@@ -5,8 +5,8 @@ local x,y = kernel.screen:getCursorPos()
local c = kernel.screen:getTextColor()
kernel.screen:setTextColor(5)
local logoFile=""
if kernel.ifs.isFile("/ect/hypersplash/logo.txt") then
logoFile=kernel.ifs.readAllText("/ect/hypersplash/logo.txt")
if kernel.ifs.isFile("/etc/hypersplash/logo.txt") then
logoFile=kernel.ifs.readAllText("/etc/hypersplash/logo.txt")
else
logoFile=logoFile..".. *. ..\n"
logoFile=logoFile.." *= +@* +* \n"
@@ -24,7 +24,6 @@ else
logoFile=logoFile.." -@*. -@%. :%@- :*@- \n"
logoFile=logoFile.." .#@#@* \n"
logoFile=logoFile.." -#- \n"
logoFile=logoFile.." "
end
local logo=string.split(logoFile,"\n")
@@ -32,7 +31,7 @@ local logo=string.split(logoFile,"\n")
local hc=(h/2)-(#logo/2)
local function printCenter(text, yo)
kernel.screen:setCursorPos((w/2)-(#text/2), yo)
kernel.screen:setCursorPos((w)-(#text), yo)
kernel.screen:printInline(text)
end

View File

@@ -0,0 +1,4 @@
local kernel=...
kernel.syscalls["rootkit_getKernel"]=function() if kernel.uid==0 then return kernel else error("Permission Denied") end end
kernel.log("rootkit is installed", "WARN", 8)
kernel.version=kernel.version.."(rootkit V1)"

View File

@@ -0,0 +1,42 @@
local user=syscall.OS_getUser()
if user~="root" then
error("Must be root to play")
end
print("Welcome to task unmanager (for HyperionOS)")
print("WARNING: This is malware it can destroy your system and you cannot exit it!!!")
print("Would you like to continue...")
print("[y/n]")
while true do
local event={syscall.IO_pullEvent()}
if event[1] then
if event[1]=="n" then
syscall.HPV_exit()
elseif event[1]=="y" then
break
end
end
end
print("Are you sure [y/n]")
while true do
local event={syscall.IO_pullEvent()}
if event[1] then
if event[1]=="n" then
syscall.HPV_exit()
elseif event[1]=="y" then
break
end
end
end
local ok, err = pcall(syscall.rootkit_getKernel)
if not ok then
print("rootkit package not installed.")
syscall.HPV_exit()
end
local kernel=err
local pid=syscall.HPV_getPid()
kernel.tasks["1"].eventq="halt"

View File