Last active
October 22, 2024 17:04
-
-
Save JohannesRudolph/77fe7955630f1a84a359a55bae7503b2 to your computer and use it in GitHub Desktop.
How to change refresh rate on an external display on macOS. Useful if for some reason macOS decides to no longer drive your 4k display at 60Hz and gives you no option to correct.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install cscreen | |
brew cask install cscreen | |
# list displays | |
cscreen -l | |
# find your external screen in the list and write the number (not the ID) down somewhere | |
# in the following instructions, use that number instead of <SCREEN> | |
# list display modes for your external screen | |
cscreen -s <SCREEN> -v | |
# find a display mode you like and run | |
cscreen -s <SCREEN> -x <HEIGHT> -y <WIDTH> -r <REFRESH_RATE> | |
# if that doesn't work (which it sometimes doesn't, even though the resolution/setting is listed in cscreen -v) | |
# try channging to a different resolution, then back to your desired resolution | |
cscreen -s 2 -d 32 -x 3840 -y 2160 -r 60 | |
cscreen -s 2 -d 32 -x 2560 -y 1440 -r 60 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment