From 64e8ca6e1bf25f0ef369a448643d07b9f261bd5d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 13 Jan 2017 11:27:36 +1100 Subject: [PATCH] Resolution: [Windows] Fix stray whitspace --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 4081879e..eab898e5 100755 --- a/neofetch +++ b/neofetch @@ -1395,7 +1395,7 @@ get_resolution() { height="$(wmic path Win32_VideoController get CurrentVerticalResolution)" height="${height//CurrentVerticalResolution/}" - [[ "$(trim "$width")" ]] && resolution="${width}x${height}" + [[ "$(trim "$width")" ]] && resolution="${width// }x${height// }" ;; "Haiku")