Resolution: [MacOS] If refresh rate is empty don't append Hz
This commit is contained in:
parent
0b96b1e4c5
commit
474e0b4ff2
1 changed files with 4 additions and 0 deletions
4
neofetch
4
neofetch
|
@ -1262,6 +1262,10 @@ get_resolution() {
|
|||
|
||||
scale_factor="$(/usr/libexec/PlistBuddy -c "Print DisplayAnyUserSets:0:0:Resolution" /Library/Preferences/com.apple.windowserver.plist)"
|
||||
|
||||
# If no refresh rate is empty.
|
||||
[[ "$resolution" =~ "@ Hz" ]] && \
|
||||
resolution="${resolution//@ Hz}"
|
||||
|
||||
(("${scale_factor%.*}" == 2)) && \
|
||||
resolution="${resolution// @/@2x @}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue