From 6ede242b1c643daef2b4bb0d3c750f3a0d87325a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 2 Oct 2016 12:01:22 +1100 Subject: [PATCH] Fix blank model output on Windows --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index f8f4caf2..d99be44c 100755 --- a/neofetch +++ b/neofetch @@ -101,7 +101,7 @@ getmodel() { model="$(wmic computersystem get manufacturer,model /value)" model="${model/Manufacturer'='}" model="${model/Model'='}" - model="${model//To Be Filled*}" + model="${model//*To Be Filled*}" ;; "Solaris")