Make colors work!

This commit is contained in:
2021-12-20 20:51:18 -08:00
parent d0c783a421
commit e8bc9f0655
3 changed files with 83 additions and 1 deletions

10
⚡️
View File

@@ -17,7 +17,7 @@ main() {
if [[ $(type ⚡️$subcommand) =~ _help-line ]]; then
printf "\t%-20s - %s\n" "$subcommand" "$(⚡️$subcommand help-line)"
else
printf "\t%-20s" $subcommand
printf "\t%-20s\n" $subcommand
fi
done
}
@@ -32,4 +32,12 @@ _help-line() {
fi
}
_good-message() {
echo -e "\e[32m$@\e[0m"
}
_bad-message() {
echo -e "\e[31m$@\e[0m"
}
main "$@"