neofetch: Fix windows issue. Closes #1297
This commit is contained in:
parent
3dd3f7f8e7
commit
c11f149989
4
neofetch
4
neofetch
|
@ -2784,10 +2784,10 @@ get_resolution() {
|
|||
|
||||
"Windows")
|
||||
IFS=$'\n' read -d "" -ra sw \
|
||||
< <(wmic path Win32_VideoController get CurrentHorizontalResolution)
|
||||
<<< "$(wmic path Win32_VideoController get CurrentHorizontalResolution)"
|
||||
|
||||
IFS=$'\n' read -d "" -ra sh \
|
||||
< <(wmic path Win32_VideoController get CurrentVerticalResolution)
|
||||
<<< "$(wmic path Win32_VideoController get CurrentVerticalResolution)"
|
||||
|
||||
sw=("${sw[@]//CurrentHorizontalResolution}")
|
||||
sh=("${sh[@]//CurrentHorizontalResolution}")
|
||||
|
|
Reference in New Issue