neofetch: Fix windows issue. Closes #1297

This commit is contained in:
Dylan Araps
2020-01-23 19:04:14 +02:00
parent 3dd3f7f8e7
commit c11f149989

View File

@@ -2784,10 +2784,10 @@ get_resolution() {
"Windows") "Windows")
IFS=$'\n' read -d "" -ra sw \ IFS=$'\n' read -d "" -ra sw \
< <(wmic path Win32_VideoController get CurrentHorizontalResolution) <<< "$(wmic path Win32_VideoController get CurrentHorizontalResolution)"
IFS=$'\n' read -d "" -ra sh \ IFS=$'\n' read -d "" -ra sh \
< <(wmic path Win32_VideoController get CurrentVerticalResolution) <<< "$(wmic path Win32_VideoController get CurrentVerticalResolution)"
sw=("${sw[@]//CurrentHorizontalResolution}") sw=("${sw[@]//CurrentHorizontalResolution}")
sh=("${sh[@]//CurrentHorizontalResolution}") sh=("${sh[@]//CurrentHorizontalResolution}")