Remove '--colors' as I just found it that it's broken

This commit is contained in:
Dylan 2016-02-01 19:11:36 +11:00
parent 7609445b89
commit 047b5f30ef
3 changed files with 0 additions and 12 deletions

View File

@ -235,8 +235,6 @@ alias fetch2="fetch \
--birthday_time Enable/Disable showing the time in birthday output --birthday_time Enable/Disable showing the time in birthday output
Text Colors: 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 --title_color num Change the color of the title
--at_color num Change the color of "@" in title --at_color num Change the color of "@" in title
--subtitle_color num Change the color of the subtitle --subtitle_color num Change the color of the subtitle

View File

@ -145,7 +145,6 @@ block_width=3
# }}} # }}}
# Text Colors {{{ # Text Colors {{{
# --colors 1 2 3 4 5
# --title_color num # --title_color num

9
fetch
View File

@ -165,7 +165,6 @@ block_width=3
# }}} # }}}
# Text Colors {{{ # Text Colors {{{
# --colors 1 2 3 4 5
# --title_color num # --title_color num
@ -1927,8 +1926,6 @@ usage () { cat << EOF
--birthday_time Enable/Disable showing the time in birthday output --birthday_time Enable/Disable showing the time in birthday output
Text Colors: 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 --title_color num Change the color of the title
--at_color num Change the color of "@" in title --at_color num Change the color of "@" in title
--subtitle_color num Change the color of the subtitle --subtitle_color num Change the color of the subtitle
@ -2027,12 +2024,6 @@ while [ "$1" ]; do
--birthday_time) birthday_time="$2" ;; --birthday_time) birthday_time="$2" ;;
# Text Colors # 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 ;; --title_color) title_color=$2 ;;
--at_color) at_color=$2 ;; --at_color) at_color=$2 ;;
--subtitle_color) subtitle_color=$2 ;; --subtitle_color) subtitle_color=$2 ;;