summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-02-29 20:11:45 -0600
committerJesse Luehrs <doy@tozt.net>2012-03-01 02:57:57 -0600
commitdb397c36be222e4facb1a179d833f897120f05dd (patch)
tree6bf828872915b4ddc48305ac7a02721f5617713b
parent23455a6e13f8b483d7d109b223923230a1e54b2c (diff)
downloadconf-db397c36be222e4facb1a179d833f897120f05dd.tar.gz
conf-db397c36be222e4facb1a179d833f897120f05dd.zip
don't need this anymore
-rw-r--r--bash/colors46
-rw-r--r--bashrc1
2 files changed, 0 insertions, 47 deletions
diff --git a/bash/colors b/bash/colors
deleted file mode 100644
index 81f95c2..0000000
--- a/bash/colors
+++ /dev/null
@@ -1,46 +0,0 @@
-function test_tput {
- local tmp
- [[ -x "$(which tput 2>/dev/null)" ]] || return 1
- tmp=$(tput setf 0)
-}
-if test_tput; then
- GRAY=$(tput setf 8)
- BLACK=$(tput setf 0)
- RED=$(tput setf 4)
- HIRED=$(tput setf 9)
- GREEN=$(tput setf 2)
- HIGREEN=$(tput setf 10)
- YELLOW=$(tput setf 6)
- HIYELLOW=$(tput setf 11)
- BLUE=$(tput setf 1)
- HIBLUE=$(tput setf 12)
- MAGENTA=$(tput setf 5)
- HIMAGENTA=$(tput setf 13)
- CYAN=$(tput setf 3)
- HICYAN=$(tput setf 14)
- WHITE=$(tput setf 7)
- HIWHITE=$(tput setf 15)
- BOLD=$(tput bold)
- NORM=$(tput sgr0)
-else
- GRAY=$(printf "\033[0;30m")
- BLACK=$(printf "\033[1;30m")
- RED=$(printf "\033[0;31m")
- HIRED=$(printf "\033[1;31m")
- GREEN=$(printf "\033[0;32m")
- HIGREEN=$(printf "\033[1;32m")
- YELLOW=$(printf "\033[0;33m")
- HIYELLOW=$(printf "\033[1;33m")
- BLUE=$(printf "\033[0;34m")
- HIBLUE=$(printf "\033[1;34m")
- MAGENTA=$(printf "\033[0;35m")
- HIMAGENTA=$(printf "\033[1;35m")
- CYAN=$(printf "\033[0;36m")
- HICYAN=$(printf "\033[1;36m")
- WHITE=$(printf "\033[0;37m")
- HIWHITE=$(printf "\033[1;37m")
- BOLD=$(printf "\033[0;39m")
- NORM=$(printf "\033[0m")
-fi
-
-# vim:ft=sh:
diff --git a/bashrc b/bashrc
index 6a1e684..01931e6 100644
--- a/bashrc
+++ b/bashrc
@@ -187,7 +187,6 @@ function svst {
source ~/.bash/cdhist.sh
# }}}
# bash configuration {{{
-source ~/.bash/colors
shopt -s extglob
shopt -s no_empty_cmd_completion
shopt -s checkwinsize