mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-23 20:12:31 +00:00
shorten if statement for retina check
This commit is contained in:
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}"
|
||||||
|
|||||||
Reference in New Issue
Block a user