make seperator changeable
This commit is contained in:
parent
78f355ba6d
commit
43c439853c
13
neofetch
13
neofetch
|
@ -3876,8 +3876,18 @@ prin() {
|
||||||
length="${#length}"
|
length="${#length}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Make sure $sep is unset
|
||||||
|
unset -v sep
|
||||||
|
|
||||||
|
# Check if $seperator is set
|
||||||
|
if [[ $seperator ]]; then
|
||||||
|
sep=$seperator
|
||||||
|
else
|
||||||
|
sep=":"
|
||||||
|
fi
|
||||||
|
|
||||||
# Format the output.
|
# Format the output.
|
||||||
string="${string/:/${reset}${colon_color}:${info_color}}"
|
string="${string/:/${reset}${colon_color}${sep}${info_color}}"
|
||||||
string="${subtitle_color}${bold}${string}"
|
string="${subtitle_color}${bold}${string}"
|
||||||
|
|
||||||
# Print the info.
|
# Print the info.
|
||||||
|
@ -4498,6 +4508,7 @@ get_args() {
|
||||||
"--underline") underline_enabled="$2" ;;
|
"--underline") underline_enabled="$2" ;;
|
||||||
"--underline_char") underline_char="$2" ;;
|
"--underline_char") underline_char="$2" ;;
|
||||||
"--bold") bold="$2" ;;
|
"--bold") bold="$2" ;;
|
||||||
|
"--seperator") seperator="$2" ;;
|
||||||
|
|
||||||
# Color Blocks
|
# Color Blocks
|
||||||
"--color_blocks") color_blocks="$2" ;;
|
"--color_blocks") color_blocks="$2" ;;
|
||||||
|
|
Reference in New Issue