Also remove trailing tab characters

This commit is contained in:
Dylan 2016-03-27 14:56:43 +11:00
parent 5f2047fd0b
commit ea1d2d2341
1 changed files with 5 additions and 5 deletions

View File

@ -510,7 +510,7 @@ case "$os" in
x32="32-bit"
;;
esac
distro=${distro//+( )/ }
distro=${distro//+([[:space:]])/ }
ascii_distro="$distro"
getdistro () {
@ -627,7 +627,7 @@ getuptime () {
uptime=${uptime# }
;;
esac
uptime=${uptime//+( )/ }
uptime=${uptime//+([[:space:]])/ }
}
# }}}
@ -920,7 +920,7 @@ getcpu () {
esac
# Trim whitespace
cpu=${cpu//+( )/ }
cpu=${cpu//+([[:space:]])/ }
# Add CPU info bar
prin "${subtitle}: ${cpu}"
@ -1070,7 +1070,7 @@ getgpu () {
;;
esac
gpu=${gpu//+( )/ }
gpu=${gpu//+([[:space:]])/ }
gpu="${gpu}${count}"
}
@ -1719,7 +1719,7 @@ getbirthday () {
# Pretty output
[ "$birthday_shorthand" == "off" ] && \
birthday=${date_cmd//+( )/ }
birthday=${date_cmd//+([[:space:]])/ }
# Toggle showing the time
[ "$birthday_time" == "off" ] && \