moved scripts folder to root directory

This commit is contained in:
scbj
2025-01-23 08:54:49 +01:00
parent 67bf396efb
commit afff479a7c
6 changed files with 3 additions and 3 deletions

5
scripts/colors.sh Normal file
View File

@@ -0,0 +1,5 @@
show256colors () {
for code in {0..255}; do
echo -e "\e[38;05;${code}m $code: Color";
done
}