From 7034721435721ba9983d95052876913ef1fad63a Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Fri, 20 Jan 2023 20:05:08 -0500 Subject: [PATCH] [O] Put bios date in parentheses https://github.com/dylanaraps/neofetch/issues/2284 --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 940529682..7fa816be7 100755 --- a/neofetch +++ b/neofetch @@ -1400,7 +1400,7 @@ get_bios() { fi if [[ -f "$DMI/bios_date" ]]; then - bios+=" $(< $DMI/bios_date)" + bios+=" ($(< $DMI/bios_date))" fi fi ;;