From 1442216dedfa82f8466c0361395378dfc9003be9 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sat, 26 Mar 2016 14:22:10 +1100 Subject: [PATCH] Fix '+' sign in date output --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 7583b8c0..c76f4b3e 100755 --- a/neofetch +++ b/neofetch @@ -1725,7 +1725,7 @@ getbirthday () { case "$os" in "Linux") birthday="$(ls -alct --full-time / | awk '/lost\+found/ {printf $6 " " $7}')" - date_cmd="$(date -d"$birthday" +"$birthday_format")" + date_cmd="$(date -d"$birthday" "$birthday_format")" ;; "Mac OS X")