diff options
author | WeirdTreeThing <bradyn127@protonmail.com> | 2024-02-13 21:38:13 -0500 |
---|---|---|
committer | WeirdTreeThing <bradyn127@protonmail.com> | 2024-02-13 21:38:13 -0500 |
commit | 511c606bf0ac3c2232d04105eee03a0a58a989d9 (patch) | |
tree | 6a92780f080e16eb74dc5dafac71ae5ad63c680c | |
parent | e6b9eaaef5265d1fd8302cf05b296a35fdd987bf (diff) |
Add fancy colors
-rwxr-xr-x | install.sh | 5 |
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" |