Remove '*_color' launch options
This commit is contained in:
parent
c71a76b2ee
commit
1385c2840e
10
README.md
10
README.md
|
@ -252,14 +252,8 @@ alias fetch2="fetch \
|
||||||
--birthday_time on/off Enable/Disable showing the time in birthday output
|
--birthday_time on/off Enable/Disable showing the time in birthday output
|
||||||
|
|
||||||
Text Colors:
|
Text Colors:
|
||||||
--text_color_auto on/off When set to 'on' and you're in ascii mode, the text
|
--colors x x x x x x Changes the text colors in this order:
|
||||||
will be colored according to your distro's ascii logo.
|
title, @, underline, subtitle, colon, 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
|
|
||||||
--colon_color num Change the color of the colons
|
|
||||||
--underline_color num Change the color of the underlines
|
|
||||||
--info_color num Change the color of the info
|
|
||||||
|
|
||||||
Text Formatting:
|
Text Formatting:
|
||||||
--underline_char char Character to use when underlineing title
|
--underline_char char Character to use when underlineing title
|
||||||
|
|
|
@ -185,15 +185,6 @@ block_width=3
|
||||||
# colors=(4 6 1 8 8 6)
|
# colors=(4 6 1 8 8 6)
|
||||||
colors=(distro)
|
colors=(distro)
|
||||||
|
|
||||||
# These flags also exist allowing you to change each
|
|
||||||
# color independently.
|
|
||||||
# --title_color num
|
|
||||||
# --at_color num
|
|
||||||
# --subtitle_color num
|
|
||||||
# --colon_color num
|
|
||||||
# --underline_color num
|
|
||||||
# --info_color num
|
|
||||||
|
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
|
26
fetch
26
fetch
|
@ -203,15 +203,6 @@ block_width=3
|
||||||
# colors=(4 6 1 8 8 6)
|
# colors=(4 6 1 8 8 6)
|
||||||
colors=(distro)
|
colors=(distro)
|
||||||
|
|
||||||
# These flags also exist allowing you to change each
|
|
||||||
# color independently.
|
|
||||||
# --title_color num
|
|
||||||
# --at_color num
|
|
||||||
# --subtitle_color num
|
|
||||||
# --colon_color num
|
|
||||||
# --underline_color num
|
|
||||||
# --info_color num
|
|
||||||
|
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
@ -2239,14 +2230,8 @@ usage () { cat << EOF
|
||||||
--birthday_time on/off Enable/Disable showing the time in birthday output
|
--birthday_time on/off Enable/Disable showing the time in birthday output
|
||||||
|
|
||||||
Text Colors:
|
Text Colors:
|
||||||
--text_color_auto on/off When set to 'on' and you're in ascii mode, the text
|
--colors x x x x x x Changes the text colors in this order:
|
||||||
will be colored according to your distro's ascii logo.
|
title, @, underline, subtitle, colon, 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
|
|
||||||
--colon_color num Change the color of the colons
|
|
||||||
--underline_color num Change the color of the underlines
|
|
||||||
--info_color num Change the color of the info
|
|
||||||
|
|
||||||
Text Formatting:
|
Text Formatting:
|
||||||
--underline_char char Character to use when underlineing title
|
--underline_char char Character to use when underlineing title
|
||||||
|
@ -2352,13 +2337,6 @@ while [ "$1" ]; do
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# Text Colors
|
# Text Colors
|
||||||
--text_color_auto) text_color_auto="$2" ;;
|
|
||||||
--title_color) title_color=$2 ;;
|
|
||||||
--at_color) at_color=$2 ;;
|
|
||||||
--subtitle_color) subtitle_color=$2 ;;
|
|
||||||
--colon_color) colon_color=$2 ;;
|
|
||||||
--underline_color) underline_color=$2 ;;
|
|
||||||
--info_color) info_color=$2 ;;
|
|
||||||
--colors)
|
--colors)
|
||||||
unset colors
|
unset colors
|
||||||
for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do
|
for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do
|
||||||
|
|
Reference in New Issue