Cols: Remove $start + $end in favor of ${block_range[@]}

This commit is contained in:
Dylan Araps
2016-12-24 00:09:16 +11:00
parent 6ebb1f5bd8
commit bbdcfc6312
2 changed files with 16 additions and 9 deletions

View File

@@ -372,8 +372,7 @@ underline_char="-"
# Color block range
# Start/End refer to the range of colors
# to print in the blocks.
# The range of colors to print.
#
# Default: '0', '7'
# Values: 'num'
@@ -381,13 +380,12 @@ underline_char="-"
#
# Example:
#
# Display colors 0-7 in the blocks.
# Display colors 0-7 in the blocks. (8 colors)
# neofetch --block_range 0 7
#
# Display colors 0-15 in the blocks.
# Display colors 0-15 in the blocks. (16 colors)
# neofetch --block_range 0 15
start=0
end=7
block_range=(0 7)
# Toggle color blocks
#