From 74f5f765697319b4dd6ecb46543184a39d5c1157 Mon Sep 17 00:00:00 2001 From: Andrew Titmuss Date: Sat, 12 Mar 2016 10:25:19 +1100 Subject: [PATCH] fixed spacing between time and AM/PM --- neofetch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neofetch b/neofetch index 2799627c..da9a6fc9 100755 --- a/neofetch +++ b/neofetch @@ -1572,11 +1572,11 @@ getbirthday () { case "${time/:*}" in 0? | 10 | 11) - time+=" AM" + time+=" AM" ;; *) - time+=" PM" + time+=" PM" ;; esac birthday+="$time" @@ -1618,7 +1618,7 @@ getbirthday () { esac # Strip seconds from time output - birthday=${birthday/:?? /} + birthday=${birthday/:?? / } # Pretty output [ "$birthday_shorthand" == "off" ] && \