From 047b5f30ef57172bceecbbf80036b28b72971aea Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 1 Feb 2016 19:11:36 +1100 Subject: [PATCH] Remove '--colors' as I just found it that it's broken --- README.md | 2 -- config/config | 1 - fetch | 9 --------- 3 files changed, 12 deletions(-) diff --git a/README.md b/README.md index abf0ec0b..63f942c7 100644 --- a/README.md +++ b/README.md @@ -235,8 +235,6 @@ alias fetch2="fetch \ --birthday_time Enable/Disable showing the time in birthday output Text Colors: - --colors 1 2 3 4 5 6 Change the color of text - (title, @, subtitle, colon, underline, info) --title_color num Change the color of the title --at_color num Change the color of "@" in title --subtitle_color num Change the color of the subtitle diff --git a/config/config b/config/config index 894a56b7..bc51295f 100644 --- a/config/config +++ b/config/config @@ -145,7 +145,6 @@ block_width=3 # }}} # Text Colors {{{ -# --colors 1 2 3 4 5 # --title_color num diff --git a/fetch b/fetch index 43b00f79..211dd3ae 100755 --- a/fetch +++ b/fetch @@ -165,7 +165,6 @@ block_width=3 # }}} # Text Colors {{{ -# --colors 1 2 3 4 5 # --title_color num @@ -1927,8 +1926,6 @@ usage () { cat << EOF --birthday_time Enable/Disable showing the time in birthday output Text Colors: - --colors 1 2 3 4 5 6 Change the color of text - (title, @, subtitle, colon, underline, info) --title_color num Change the color of the title --at_color num Change the color of "@" in title --subtitle_color num Change the color of the subtitle @@ -2027,12 +2024,6 @@ while [ "$1" ]; do --birthday_time) birthday_time="$2" ;; # Text Colors - --colors) title_color=$2 - [ "$3" ] && subtitle_color=$3 - [ "$4" ] && at_color=$4 - [ "$5" ] && colon_color=$5 - [ "$6" ] && underline_color=$6 - [ "$7" ] && info_color=$7 ;; --title_color) title_color=$2 ;; --at_color) at_color=$2 ;; --subtitle_color) subtitle_color=$2 ;;