shorten if statement for retina check
This commit is contained in:
parent
52e0884250
commit
2010d11328
1 changed files with 1 additions and 2 deletions
3
neofetch
3
neofetch
|
@ -1326,9 +1326,8 @@ getresolution() {
|
||||||
|
|
||||||
scale_factor="$(/usr/libexec/PlistBuddy -c "Print DisplayAnyUserSets:0:0:Resolution" /Library/Preferences/com.apple.windowserver.plist)"
|
scale_factor="$(/usr/libexec/PlistBuddy -c "Print DisplayAnyUserSets:0:0:Resolution" /Library/Preferences/com.apple.windowserver.plist)"
|
||||||
|
|
||||||
if [ "${scale_factor%.*}" == "2" ]; then
|
[ "${scale_factor%.*}" == "2" ] && \
|
||||||
resolution="${resolution// @/@2x @}"
|
resolution="${resolution// @/@2x @}"
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$refresh_rate" == "off" ]; then
|
if [ "$refresh_rate" == "off" ]; then
|
||||||
resolution="${resolution// @ [0-9][0-9]Hz}"
|
resolution="${resolution// @ [0-9][0-9]Hz}"
|
||||||
|
|
Loading…
Reference in a new issue