mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-13 20:22:11 +00:00
Cols: Remove $start + $end in favor of ${block_range[@]}
This commit is contained in:
@@ -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
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user