Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #69 from Heavybullets8/dns-color-fix
Browse files Browse the repository at this point in the history
- Change to a proper gray color for DNS alternated colors, and the $gray variable
  • Loading branch information
Heavybullets8 authored Feb 9, 2023
2 parents cff9f1c + 76abf7d commit 24d09a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/dns.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dns(){
if (( count % 2 == 0 )); then
color="\033[0m"
else
color="\033[1;30m"
color="\033[38;5;7m"
fi
echo -e "${color}$app_name $full_app_name.$i.svc.cluster.local $port\033[0m"
done | column -t -N "App Name,DNS Name,Port"
Expand Down
2 changes: 1 addition & 1 deletion heavy_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ yellow='\033[1;33m'
green='\033[0;32m'
blue='\033[0;34m'
bold='\033[1m'
gray='\033[1;30m'
gray='\033[38;5;7m'


#If no argument is passed, open menu function.
Expand Down

0 comments on commit 24d09a2

Please sign in to comment.