about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeirdTreeThing <bradyn127@protonmail.com>2024-02-13 21:38:13 -0500
committerWeirdTreeThing <bradyn127@protonmail.com>2024-02-13 21:38:13 -0500
commit511c606bf0ac3c2232d04105eee03a0a58a989d9 (patch)
tree6a92780f080e16eb74dc5dafac71ae5ad63c680c
parente6b9eaaef5265d1fd8302cf05b296a35fdd987bf (diff)
Add fancy colors
-rwxr-xr-xinstall.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 2087abd..9237a70 100755
--- a/install.sh
+++ b/install.sh
@@ -7,6 +7,9 @@ set -e
 
 ROOT=$(pwd)
 
+# fancy color
+printf "\033[94m"
+
 if [ -f /usr/bin/apt ]; then
 	distro="deb"
 elif [ -f /usr/bin/zypper ]; then
@@ -104,3 +107,5 @@ else
 fi
 
 echo "Done"
+# reset color
+printf "\033[0m"