Cols: Remove $start + $end in favor of ${block_range[@]}
This commit is contained in:
parent
6ebb1f5bd8
commit
bbdcfc6312
2 changed files with 16 additions and 9 deletions
|
|
@ -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
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue