Screen resolution is a key parameter that affects image quality, usability, and even laptop performance. Incorrect settings can lead to blurred text, distorted images, or even physical discomfort during prolonged use. However, not all users know how to correctly configure this parameter to suit their tasks - be it working with graphics, watching movies in 4K or games with high FPS.
In this article we will look at all the ways to change the resolution on laptops with different operating systems, including hidden settings that manufacturers often do not advertise. You'll learn how to avoid common mistakes (for example, choosing an incompatible resolution that leads to a black screen), how to return to standard settings if something goes wrong, and what additional tools will help you fine-tune the image for specific tasks. We will pay special attention to laptops with hybrid graphics (NVIDIA Optimus/AMD Switchable Graphics), where settings can be duplicated in several control panels.
Why is it important to set your screen resolution correctly?
Screen resolution determines the number of horizontal and vertical pixels displayed on the display. For example, 1920×1080 (Full HD) means 1920 pixels in width and 1080 in height. This parameter depends on:
- 🔍 Clarity of text and graphics — if the resolution is incorrect, fonts become blurry and icons become unreadable.
- 🎮 Gaming performance - high resolution requires more video card resources, which can lead to lags on weak laptops.
- 👁️ Eye strain - elements are too small on the high screen
DPIThey force you to squint, which leads to eye fatigue. - 📺 Compatible with external monitors — when connecting a second screen, you may need to manually adjust the scaling.
Many users mistakenly believe that the maximum resolution (for example, 3840×2160 on 4K-displays) is always better. However, on small laptop screens (13-15 inches), this often results in interface elements becoming too small. The optimal choice depends on the diagonal of the matrix, pixel density (PPI) and your tasks.
⚠️ Attention: Changing the resolution to a value not supported by your video card or monitor driver may result in a black screen. In this case it will help factory reset via safe mode.
How to change screen resolution in Windows 10 and 11
In modern versions of Windows, the resolution setting process is unified, but there are nuances for laptops with hybrid graphics. Let's consider both options.
Method 1: Standard system settings
The easiest method is through the display control panel:
- Right-click on your desktop and select
Screen Options(Windows 11) orScreen settings → Screen resolution(Windows 10). - In the section
Displayfind the drop down listResolution. - Select the desired value from the list of recommended ones (marked with the word
(recommended)). - Confirm changes with the button
Save.
If the resolution you need is not listed, your video card drivers may need to be updated. To do this:
- 🔧 Open
Device Manager(Win + X → Device Manager). - 🖥️ Expand thread
Video adapters. - 🔄 Right click on your video card (NVIDIA, AMD or Intel) and select
Update driver.
☑️ Preparing to change resolution
Method 2: Graphics Control Panel (for laptops with NVIDIA/AMD)
On laptops with discrete graphics (NVIDIA GeForce, AMD Radeon) resolution settings may be duplicated in proprietary utilities. For example, in NVIDIA Control Panel:
- Right-click on the desktop and select
NVIDIA Control Panel. - Go to
Display → Change resolution. - Select your monitor (if there are several) and set the desired resolution.
- Click
Applyand confirm the changes.
For AMD Radeon Software the path will be like this: Settings → Display → Resolution. Here you can also adjust the scaling (GPU Scaling) if the image on the external monitor is not displayed correctly.
⚠️ Attention: If after changing the resolution the screen turns black, wait 15 seconds - the system will automatically return to the previous settings. If this does not happen, reboot the laptop into safe mode.
On laptops with Intel Iris Xe or UHD Graphics Additional resolution settings can be found in Intel Graphics Command Center (installed separately from Intel website).
Setting resolution on macOS (MacBook)
On laptops Apple The process for changing resolution differs due to system characteristics Retina-displays. Here, instead of the classic list of permissions, the concept is used scaling, where the system automatically selects the optimal parameters.
To change the resolution to MacBook:
- Open
System Settings → Monitors. - While holding down the key
Option (⌥), click on the buttonScale(an expanded list of permissions will appear). - Select one of the suggested values. Recommended options are marked as
(Default).
On MacBook Pro And MacBook Air with chips M1/M2 Additional modes available:
- 🖥️
More space— will increase the work area by reducing interface elements. - 🔍
Text is clearer— optimizes the display for working with small text (for example, in Photoshop or Xcode). - 🎨
Like on second monitors- useful when connecting an external display with a different resolution.
| MacBook model | Recommended Resolution (Retina) | Maximum resolution |
|---|---|---|
| MacBook Air 13" (M1/M2) | 2560×1600 |
2560×1600 (scaled) |
| MacBook Pro 14" (M1 Pro/Max) | 3024×1964 |
3024×1964 (scaled to 3840×2400) |
| MacBook Pro 16" (M1 Pro/Max) | 3456×2234 |
3456×2234 (scaled to 3840×2400) |
On MacBooks with Intel chips (pre-2020), connecting an external monitor with a resolution higher than 4K may require an adapter that supports DisplayPort 1.4 or Thunderbolt 3.
Changing resolution in Linux (Ubuntu, Fedora, Mint)
On Linux distributions, the resolution setting depends on the graphical environment used (GNOME, KDE Plasma, XFCE) and video card drivers. Let's consider universal methods.
Method 1: Via GUI
Most distributions (eg. Ubuntu 22.04 or Fedora 38) Screen settings are available via:
- Open
Settings → Display(GNOME) orSystem Settings → Display(KDE). - Select your monitor (if there are several) and set the resolution from the drop-down list.
- Apply changes with the button
Apply.
If you don't have the required resolution, you may need to install proprietary drivers to NVIDIA or AMD:
sudo ubuntu-drivers autoinstall # Для Ubuntusudo dnf install akmod-nvidia # Для Fedora (NVIDIA)
sudo dnf install xorg-x11-drv-amdgpu # Для Fedora (AMD)
Method 2: Via terminal (xrandr)
Utility xrandr allows you to control resolution from the command line. First check the available modes:
xrandr -q
Then set the resolution you want (eg 1920x1080 on output eDP-1):
xrandr --output eDP-1 --mode 1920x1080
If the required permission is not in the list, you can add it manually:
cvt 1920 1080 60 # Генерация Modelinexrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode eDP-1 "1920x1080_60.00"
xrandr --output eDP-1 --mode "1920x1080_60.00"
⚠️ Attention: Incorrect parameters inxrandrmay cause the graphics server to crash. If the screen goes blank, reboot in text mode (Ctrl + Alt + F3) and remove the added mode with the commandxrandr --delmode eDP-1 "1920x1080_60.00".
How to return to standard resolution in Linux if the screen goes black
If after changes in xrandr the screen does not display the image, switch to the virtual console (Ctrl+Alt+F2), log in as your user and run:
xrandr --output eDP-1 --auto
Then return to graphics mode (Ctrl+Alt+F7 or F8).
Additional settings: scaling, refresh rate, color profile
Screen resolution is only part of the settings that affect image quality. Let's take a look at the related settings that you should configure.
Scaling (DPI)
On high resolution screens (eg. QHD+ or 4K) interface elements may look too small. To fix this:
- 🪟 Windows:
Settings → System → Display → Zoom(recommended 125–150% for4K). - 🍎 macOS:
System Preferences → Monitors → Scaling(selectMore text). - 🐧 Linux (GNOME):
Settings → Accessibility → Large Textorgsettings set org.gnome.desktop.interface text-scaling-factor 1.25.
Refresh Rate (Hz)
For gamers and users who work with dynamic content, screen refresh rate is important. On most laptops it is fixed at 60 Hz, but some models (for example, ASUS ROG or Lenovo Legion) support 120 Hz or 144 Hz. To change it:
- 🖥️ On Windows:
Display settings → Advanced display settings → Adapter properties → Monitor. - 🐧 On Linux:
xrandr --output eDP-1 --mode 1920x1080 --rate 144.
On MacBook The refresh rate is fixed and depends on the model (usually 60 Hz, except MacBook Pro 14"/16" with ProMotion, where available to 120 Hz).
Color profile and calibration
Color rendering is important for designers and photographers. Set it up like this:
- 🎨 Windows:
Settings → System → Display → Colors → Color Calibration(or use DisplayCAL). - 🍎 macOS:
System Preferences → Monitors → Color(select profilesRGBorDCIP3). - 🐧 Linux: Install GNOME Color Manager or ArgyllCMS.
- Full HD (1920×1080)
- QHD (2560×1440)
- 4K (3840×2160)
- HD (1366×768)
- Other
Problem solving: black screen, blurry text, unavailable resolutions
Typical problems may arise when changing the resolution. Let's figure out how to fix them.
Black screen after changing resolution
If the screen is blank and unresponsive, follow these steps:
- Wait 15-20 seconds - the system may automatically roll back the changes.
- If nothing happens, reboot your laptop into safe mode:
- 🪟 Windows: Hold
Shifton reboot, then selectSafe Mode. - 🐧 Linux: Switch to the text console (
Ctrl + Alt + F3) and return to standard resolution viaxrandr.
Blurred text or icons
This problem often occurs when:
- Incorrect scaling (for example,
125%on the screenFull HD). - Using a non-standard resolution (not a multiple of the native one).
- Lack of drivers for the video card.
Solutions:
- 🔧 Return the scale to
100%and check the clarity. - 🖥️ Select native resolution your screen (indicated in the laptop documentation).
- 🔄 Update drivers via GeForce Experience (NVIDIA) or Adrenalin (AMD).
The required permission is not listed
If the required resolution is not displayed, the reasons may be:
| Problem | Reason | Solution |
|---|---|---|
No 4K on an external monitor |
Cable HDMI 1.4 does not support 4K@60Hz |
Use DisplayPort or HDMI 2.0 |
No 144 Hz |
Video card driver is not updated | Install the latest version from the manufacturer's website |
No non-standard resolution (eg 1600x900) |
Driver limitations | Add manually via xrandr (Linux) or Custom Resolution Utility (Windows) |
If your laptop does not support the required resolution on your external monitor, check the cable and port compatibility. For example, USB-C with Thunderbolt 3 supports 4K@60Hz, and the usual HDMI - no.
How to reset resolution settings to factory settings
If experiments with resolution have led to unstable operation of the system, you can return the standard parameters in several ways.
Windows
You can return the screen to factory settings in Windows via:
Settings → System → Display → Resolution— select the option marked(recommended).Control Panel → Appearance and Personalization → Display → Resolution Settings(for older versions).- Reset via DISM (if the problem is caused by corrupted system files):
DISM /Online /Cleanup-Image /RestoreHealth
macOS
On MacBook You can reset the display settings like this:
- Open
Terminaland do:
sudo defaults delete /Library/Preferences/com.apple.windowserver.plist
- Restart your laptop.
After this, the system will automatically apply the standard parameters for your model.
Linux
To reset settings xrandr:
- Remove all custom modes:
xrandr --delmode eDP-1 "1920x1080_60.00"
- Return to automatic mode:
xrandr --output eDP-1 --auto
If the problem persists, delete the configuration files:
rm ~/.config/monitors.xml
FAQ: Frequently asked questions about laptop screen resolution
Is it possible to set the resolution higher than native (for example, 4K on Full HD-screen)?
Technically yes, but it doesn't make sense. The screen physically cannot display more pixels than its native resolution. As a result, the image will be scaled, resulting in blurriness. The exception is virtual permissions for games (via DSR on NVIDIA or VSR on AMD), but this will not improve clarity, but will only increase the load on the video card.
Why is the resolution available on the external monitor? 4K, but not on the built-in one?
This is a limitation of the laptop's built-in matrix. For example, if your Lenovo ThinkPad has a screen Full HD, then the maximum resolution for it is 1920×1080, even if the video card supports 4K. For an external monitor, the limitations depend on its characteristics and the cable used (for example, HDMI 2.0 supports 4K@60Hz, and HDMI 1.4 - only 4K@30Hz).
How to find out the native resolution of your screen?
There are several ways:
- Look at the documentation for the laptop (on the manufacturer's website).
- On Windows:
Settings → System → Display → Advanced screen options- it is indicated thereRecommended Resolution. - On Linux: do
xrandr -q | grep "*"- a line with an asterisk (*) will show the current native resolution. - On MacBook:
About This Mac → System Report → Graphics/Displays.
Why did the resolution on the main screen go wrong after connecting a second monitor?
This is a common problem with different monitor resolutions. The system tries to unify scaling, which can cause elements to become too large or small on one of the screens. Solutions:
- On Windows: Disable the option
Make text and other elements larger on all displaysin the scaling settings. - On macOS: In Display settings, turn off
Scale as on second monitors. - On Linux: Set up separate scaling for each screen via
xrandr --output HDMI-1 --scale 1x1 --output eDP-1 --scale 1.5x1.5.
Is it possible to change the resolution in the BIOS?
No, the BIOS (or UEFI) does not adjust screen resolution settings. There you can only change boot-related parameters (for example, video card priority on laptops with NVIDIA Optimus). The resolution in the BIOS is always fixed and depends on the firmware version of the motherboard.