replace if statement with parameter expansion

This commit is contained in:
xynxynxyn 2018-08-16 10:04:24 +02:00
parent 43c439853c
commit 9b29d3f669
1 changed files with 2 additions and 12 deletions

View File

@ -3876,18 +3876,8 @@ prin() {
length="${#length}"
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.
string="${string/:/${reset}${colon_color}${sep}${info_color}}"
string="${string/:/${reset}${colon_color}${separator:=:}${info_color}}"
string="${subtitle_color}${bold}${string}"
# Print the info.
@ -4508,7 +4498,7 @@ get_args() {
"--underline") underline_enabled="$2" ;;
"--underline_char") underline_char="$2" ;;
"--bold") bold="$2" ;;
"--seperator") seperator="$2" ;;
"--separator") separator="$2" ;;
# Color Blocks
"--color_blocks") color_blocks="$2" ;;