From 44684d6bbefd0b784776c471d6ec05aad3f4f082 Mon Sep 17 00:00:00 2001 From: Kied T L <32681240+kiedtl@users.noreply.github.com> Date: Tue, 9 Apr 2019 15:08:32 -0400 Subject: [PATCH] fix more image issues --- src/winfetch.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/winfetch.ps1 b/src/winfetch.ps1 index ef743b9..44d35c8 100755 --- a/src/winfetch.ps1 +++ b/src/winfetch.ps1 @@ -410,7 +410,7 @@ $counter = 0 $logoctr = 0 while ($counter -lt $info.Count) { $logo_line = $img[$logoctr] - $item_title = " $e[1;34m$($info[$counter][0])$e[0m" + $item_title = "$e[1;34m$($info[$counter][0])$e[0m" $item_content = if (($info[$counter][0]) -eq '') { $($info[$counter][1]) } else { @@ -418,7 +418,7 @@ while ($counter -lt $info.Count) { } if ($item_content -notlike '*disabled') { - write-host " ${logo_line}${item_title}${item_content}" + write-host " ${logo_line}$e[40G${item_title}${item_content}" } $counter++