General: Function cleanup
This commit is contained in:
parent
37dd5d5741
commit
fec45f7a75
11
neofetch
11
neofetch
|
@ -2440,13 +2440,10 @@ prin() {
|
|||
# Underline {{{
|
||||
|
||||
getunderline() {
|
||||
case "$underline_enabled" in
|
||||
"on")
|
||||
underline="$(printf %"$length"s)"
|
||||
underline="${underline// /$underline_char}"
|
||||
;;
|
||||
"off") underline="" ;;
|
||||
esac
|
||||
if [ "$underline_enabled" == "on" ]; then
|
||||
underline="$(printf %"$length"s)"
|
||||
underline="${underline// /$underline_char}"
|
||||
fi
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
|
Reference in New Issue