From f33ff9fe6bef1a6894ac5332c7f95c0a44f45761 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Fri, 13 May 2016 16:54:45 +0100 Subject: [PATCH] Clean up color handling in bashrc --- bash/.bashrc | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/bash/.bashrc b/bash/.bashrc index 0b54b4b..dbf95c3 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -53,22 +53,14 @@ if ! shopt -oq posix; then fi fi -BASE03=$(tput setaf 8) -BASE02=$(tput setaf 0) -BASE01=$(tput setaf 10) -BASE00=$(tput setaf 11) -BASE0=$(tput setaf 12) -BASE1=$(tput setaf 14) -BASE2=$(tput setaf 7) -BASE3=$(tput setaf 15) -YELLOW=$(tput setaf 3) -ORANGE=$(tput setaf 9) +BLACK=$(tput setaf 0) RED=$(tput setaf 1) -MAGENTA=$(tput setaf 5) -VIOLET=$(tput setaf 13) +GREEN=$(tput setaf 2) +YELLOW=$(tput setaf 3) BLUE=$(tput setaf 4) +MAGENTA=$(tput setaf 5) CYAN=$(tput setaf 6) -GREEN=$(tput setaf 2) +GRAY=$(tput setaf 7) BOLD=$(tput bold) RESET=$(tput sgr0) -- 2.45.2