improved refresh_rate fix, now actually works on OS X...

parent 3b433558
......@@ -1538,8 +1538,15 @@ getresolution () {
awk '/Resolution:/ {printf $2"x"$4" @ "$6"Hz, "}')"
fi
[ "$refresh_rate" == "off" ] || [ "${resolution// * @ }" == "0Hz" ] && \
resolution="${resolution// @ *[0-9]Hz}"
if [ "$refresh_rate" == "off" ] || [ "${resolution// * @ }" == "0Hz" ]; then
IFS=","
for res in $resolution; do
res="${res// @ *[0-9]Hz}"
newres="$newres, $res"
done
unset IFS
resolution="${newres:2}"
fi
;;
"Windows")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment