From ff0d9e9e733d82f34af3b4bb0ac879fa6c7d5647 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 16 Dec 2016 12:22:18 +1100 Subject: [PATCH] Birthday: Fix BSD field order --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 5a065e19..e2d0c632 100755 --- a/neofetch +++ b/neofetch @@ -1751,7 +1751,7 @@ get_birthday() { ;; esac - birthday="$(ls -alctT "$birthday_file" | awk '{printf $9 " " $7 " " $6 " " $8}')" + birthday="$(ls -alctT "$birthday_file" | awk '{printf $9 " " $6 " " $7 " " $8}')" ;; "Windows")