Merge pull request #285 from iandrewt/refresh_fix
fixed refresh rate on OS X
This commit is contained in:
commit
3b4335583d
4
neofetch
4
neofetch
|
@ -1538,8 +1538,8 @@ getresolution () {
|
||||||
awk '/Resolution:/ {printf $2"x"$4" @ "$6"Hz, "}')"
|
awk '/Resolution:/ {printf $2"x"$4" @ "$6"Hz, "}')"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ "$refresh_rate" == "off" ]] && \
|
[ "$refresh_rate" == "off" ] || [ "${resolution// * @ }" == "0Hz" ] && \
|
||||||
resolution="${resolution// @ *([0-9])Hz}"
|
resolution="${resolution// @ *[0-9]Hz}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Windows")
|
"Windows")
|
||||||
|
|
Reference in New Issue