Add new scripts for system monitoring and remove deprecated scripts

This commit is contained in:
2025-03-14 09:13:55 +00:00
parent d29b44e783
commit bde27ebfb1
20 changed files with 7 additions and 1740 deletions

6
scripts/colors Executable file
View File

@@ -0,0 +1,6 @@
for i in {0..255}; do
printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i"
if ((i == 15)) || ((i > 15)) && (((i - 15) % 6 == 0)); then
printf "\n"
fi
done