diff --git a/neofetch b/neofetch index 50de9ae7..dd560270 100755 --- a/neofetch +++ b/neofetch @@ -83,6 +83,12 @@ getmodel() { "ipod7,1") model="iPod touch 6G" ;; esac ;; + + "Windows") + model="$(wmic computersystem get manufacturer,model /value)" + model="${model/Manufacturer'='}" + model="${model/Model'='}" + ;; esac }