added scripts folder to gitea

This commit is contained in:
lucca
2026-06-11 13:47:48 -04:00
commit f8130bd7d0
91 changed files with 1868 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
while :
do
read -n 2 -s -r -p "Press any key to continue: " action
echo $action
case $action in
00)
echo "mario is real"
;;
01)
echo "L is real 2401"
;;
02)
neofetch
;;
esac
done