diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd81736..31a6495b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ ## Contributors -[**@yslgirl**](https://github.com/yslgirl) +- [**@yslgirl**](https://github.com/yslgirl) +- [**@iandrewt**](https://github.com/iandrewt) +- [**@chrisweeksnz**](https://github.com/chrisweeksnz) ## OS - Fixed detection bug with Gentoo. - Added support for macOS High Sierra. [**@yslgirl**](https://github.com/yslgirl) +- Fixed Install Date bug with macOS. [**@iandrewt**](https://github.com/iandrewt) +- Added support for Container Linux by CoreOS. [**@chrisweeksnz**](https://github.com/chrisweeksnz) diff --git a/neofetch b/neofetch index 20dcb0e1..4de22a6a 100755 --- a/neofetch +++ b/neofetch @@ -2254,7 +2254,13 @@ get_install_date() { return ;; - *) install_date="$(ls -dlctT "$install_file" | awk '{printf $9 " " $6 " "$7 " " $8}')" ;; + *"HLOPRSTUWabc"*) # macOS ls + install_date="$(ls -dlctUT "$install_file" | awk '{printf $9 " " $6 " "$7 " " $8}')" + ;; + + *) + install_date="$(ls -dlctT "$install_file" | awk '{printf $9 " " $6 " " $7 " " $8}')" + ;; esac install_date="${install_date//-/ }"