Created
May 21, 2020 09:09
-
-
Save UgRoss/b10d038bef8fe2fb8180c0ccbb2d4e69 to your computer and use it in GitHub Desktop.
How to change refresh rate on an external display on macOS
This file contains hidden or 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 homebrew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # 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> | |
| # enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment