Screen resolution is a key parameter that affects image clarity, usability, and even laptop performance. The wrong settings can lead to blurry text, distorted proportions, or even headaches from prolonged use. But how do you find the optimal resolution among the dozens of available options? And why does the system sometimes reset itself after updating drivers?
In this article you will find not only universal instructions for Windows 10/11, macOS And Linux, but also rare techniques - for example, how to ask non-standard resolution via Windows registry or console commands in Ubuntu. We'll also look at which settings are best for gaming, design, or watching videos, and why modern laptops with 4K screens often require manual calibration.
1. How to check the current screen resolution
Before changing settings, you need to understand what resolution you are currently using. In most cases, the system automatically installs native resolution (native resolution) - one in which the pixels of the screen coincide with the pixels of the image 1:1. But after connecting a second monitor, updating drivers or crashing, the settings may become lost.
Here's how to check your current settings on different platforms:
- 🖥️ Windows: Right click on the desktop →
Screen Options→ scroll to the sectionResolution. The current value will be highlighted in blue. - 🍎 macOS: Open
System Settings → Monitors. The current resolution and available options are displayed here. - 🐧 Linux (GNOME/KDE): Go to
Settings → Displayor use the commandxrandrin the terminal (more details below).
Please note: if the text on the screen appears too large or small, the problem may not be with the resolution, but with the scaling (DPI). For example, on high resolution screens (e.g. MacBook Pro Retina or Dell XPS 13) Windows by default zooms in to 125-200% to keep text readable.
- 1366×768
- 1920×1080 (Full HD)
- 2560×1440 (QHD)
- 3840×2160 (4K)
- Other
2. Optimal resolution: how to choose?
Not all permissions are created equal. For example, setting 800×600 on a modern laptop will result in a blurry image, and selecting 4K on weak hardware - slowdowns in games. Here are the basic rules:
- 🔍 Native Resolution: Always choose the maximum from the list of available ones (usually marked as “recommended”). For Full HD-screens this
1920×1080, for Retina —2560×1600or higher. - 🎮 For games: Lower resolution to
1280×720or1600×900if FPS drops below 60. Use dynamic resolution (DLSS/FSR) in modern games. - 🎬 For video: Match the player resolution to the video resolution. For example, for
1080p-video on 4K screen enable 2:1 scaling to avoid artifacts. - 🖌️ For design: Use native resolution + color calibration. On MacBook Pro activate the mode
True Tonefor natural shades.
| Screen type | Native resolution | Recommended zoom (DPI) | Application |
|---|---|---|---|
| Full HD (15.6–17") | 1920×1080 |
100–125% | Universal (office, games, video) |
| QHD (13–15") | 2560×1440 |
125–150% | Design, programming, viewing 4K content |
| 4K UHD (15–17") | 3840×2160 |
150–200% | Professional work with graphics, video editing |
| Retina (MacBook) | 2560×1600 or 3024×1964 |
125–175% (automatic) | Any task (optimized by Apple) |
⚠️ Attention: If after changing the resolution the screen turns black or stripes appear, wait 15 seconds - the system will return to the previous settings automatically. If this does not happen, reboot the laptop into safe mode (on Windows hold Shift when rebooting).
3. Changing resolution in Windows 10 and 11
In the latest versions of Windows, the process is simplified as much as possible, but there are some nuances. For example, on laptops with NVIDIA Optimus (integrated + discrete graphics) settings can be duplicated in the video card control panel.
Steps to change resolution:
- Click
Win + I→ go toSystem → Display. - In the section
Scale and layoutselect the desired resolution from the drop-down list. - If the option you need is not available, click
Adapter properties→List of all modes. - To apply the changes, click
Save(in Windows 11, the button may be missing - changes are applied automatically).
If the standard settings are not suitable, you can set custom resolution via:
- 🛠️ NVIDIA Control Panel:
Change Resolution → Settings → Create Custom Resolution. - 🖥️ AMD Radeon Panel:
Display → Create Profile. - 🔧 Windows Registry: Open
regeditand follow the pathHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\Configuration. Changing the registry can lead to system inoperability - create a restore point before editing!
Create a system restore point
Update video card drivers
Check monitor connection (for external displays)
Start the laptop from the network (not from the battery) -->
4. Setting resolution on macOS (including M1/M2)
On a MacBook, the process is simpler, but there is a specificity: the system hides suboptimal resolutions by default. To see all options, hold Option (⌥) when you click on Scaled in display settings.
Instructions for macOS Ventura/Monterey/Sonoma:
- Open
System Settings → Monitors. - Select
Resolution: Default for display(recommended) or clickScaledfor manual settings. - For external monitors, activate
Mirror screensorExpand desktop.
On chips Apple Silicon (M1/M2) additional options available:
- 🎨 True Tone: Automatic adjustment of color temperature for lighting.
- 🔄 Dynamic Range: Switch between SDR and HDR for compatible displays (such as MacBook Pro 14/16" 2021+).
- 🖥️ Reference Mode: Modes for professionals (e.g.
Apple XDRfor video editing).
⚠️ Attention: On Mac with Retina displays Selecting a non-native resolution results in software scaling, which can reduce text clarity. If after the changes the image becomes “soapy”, return the settings to the factory settings.
On a MacBook with an M1/M2 chip, to reset the display to factory settings, hold the power button for 10 seconds, then release and immediately press Command + Option + P + R for 20 seconds (NVRAM reset).
5. Linux: changing resolution via xrandr and GNOME/KDE
Linux doesn't have a universal GUI for managing resolution - it all depends on the distribution and desktop environment. The most reliable way is a console utility xrandr.
Steps for setup:
- Open a terminal (
Ctrl + Alt + T) and enter:xrandr -qThe command will display a list of connected displays (for example,
eDP-1for built-in screen) and supported resolutions. - To change the resolution to
1920x1080with frequency60 Hzfor the main display, run:xrandr --output eDP-1 --mode 1920x1080 --rate 60 - To add a custom resolution (for example,
1600x900):cvt 1600 900xrandr --newmode "1600x900_60.00" [параметры из вывода cvt]
xrandr --addmode eDP-1 "1600x900_60.00"
xrandr --output eDP-1 --mode "1600x900_60.00"
In graphical environments:
- 🪟 GNOME (Ubuntu, Fedora):
Settings → Displays. Here you can change the resolution and scale (up to 200%). - 🖥️ KDE Plasma (Kubuntu):
System Settings → Display and Monitor. Supports profiles for different tasks. - 🐧 Xfce (Xubuntu):
Settings → Display. Fewer options, but easier to use.
How to reset xrandr to factory settings?
If after experimenting with xrandr the screen stopped working, return the default settings with the command:
xrandr --output eDP-1 --auto
(replace eDP-1 to your display from the output xrandr -q).
If this doesn't help, reboot into recovery mode (hold Shift at boot) and select the option Resume normal boot.
6. Solving permission problems
Sometimes, after changing settings, errors occur: a black screen, a distorted image, or the inability to save settings. Here are typical causes and solutions:
| Problem | Possible reason | Solution |
|---|---|---|
| Black screen after changing resolution | The video driver does not support the selected mode | Wait 15 seconds (auto-return) or reboot in safe mode |
| Permission resets after reboot | Outdated drivers or software conflict | Update drivers via Device Manager or manufacturer's website |
| The required permission is not listed | The driver does not recognize the monitor | Connect the display via a different port (HDMI/DP) or update the EDID |
| Blurry text in games/apps | Wrong scaling (DPI) | Disable app-specific scaling (properties -> compatibility) |
If the problem persists, check:
- 🔌 Cables and ports: Try a different cable HDMI 2.0/2.1 or DisplayPort. On laptops with USB-C use certified adapters.
- 🔄 Drivers: Remove current drivers via
Device Managerand install the latest from the site NVIDIA, AMD or Intel. - 📋 EDID data: If the monitor is not recognized, download the utility Custom Resolution Utility (CRU) to manually add a profile.
Before updating your video card drivers, disable your antivirus (for example, Avast or Kaspersky) - they can block installation, resulting in resolution failures.
7. Features for games and professional tasks
Gamers and designers often face unique resolution requirements. For example, in games, not only resolution is important, but also aspect ratio (aspect ratio) and update rate (Hz).
Tips for different scenarios:
- 🎮 Games:
- B NVIDIA Control Panel activate
G-Syncfor smoothness of the picture. - In the game settings, select
Borderless Windowedinstead of full screen mode - this will reduce delays when switching between windows. - For weak laptops use
Dynamic Resolution Scaling(in games on Unreal Engine).
- B NVIDIA Control Panel activate
- 🎨 Design/3D modeling:
- B Photoshop or Blender configure
Color ProfileonsRGBfor accurate color reproduction. - To work with Adobe Premiere use permission
3840×2160(4K) and frequency24 Hzfor film editing.
- B Photoshop or Blender configure
- 📊 Office work:
- B Windows activate
Night light(Win + A → Night Light) to reduce eye strain. - On Mac turn on
Dark modeinSystem settings.
- B Windows activate
For streaming (for example, via OBS Studio) configure:
Базовое разрешение: 1920x1080Выходное разрешение: 1280x720 (downscale)
Фильтр масштабирования: Lanczos (для чёткости)
FAQ: Frequently asked questions about screen resolution
Is it possible to set the resolution higher than native? For example, 4K on a Full HD screen?
Technically yes, but it makes no sense. The screen physically cannot display more pixels than its native resolution. The system simply scales the image, which will lead to blur. Exception - virtual permissions for games (eg DSR in NVIDIA drivers), where rendering occurs at a higher resolution and is then compressed to native resolution.
Why does the resolution on my laptop go wrong after connecting a second monitor?
This is a common problem with different resolutions of the main and external screens. Windows tries to adjust the settings to fit both displays. Solution:
- Open
Screen Options(Win + P). - Select mode
Expand(do not duplicate!). - Manually set the native resolution for each monitor.
If the problem persists, update your drivers or use Display Fusion for fine-tuning multi-monitor configurations.
How to return to standard resolution if the screen goes black?
If the image disappears after changing the settings:
- Windows: Wait 15 seconds - the system should return the previous settings. If not, reboot into safe mode (hold
Shiftwhen rebooting) and reset the settings. - macOS: Restart your Mac while holding
Command + Rto boot intoRecovery Mode, then selectReinstall macOS(data will not be lost). - Linux: Connect via
SSHfrom another device and doxrandr --autoor edit the config~/.config/monitors.xml.
Which resolution is better for a laptop battery?
The lower the resolution, the less load on the GPU and the longer the battery lasts. For example, on Full HD laptop switching from 1920×1080 on 1366×768 can increase battery life by 10–15%. However, this will reduce the clarity of the text. Optimal balance:
- For office tasks: native resolution + reduced brightness (60–70%).
- To watch videos: video resolution = screen resolution (e.g.
1080pon Full HD). - For gaming: lower resolution and enable
VSYNCto reduce the load.
Why aren't my native resolutions available in games?
This may be due to:
- Outdated drivers (update via GeForce Experience or AMD Adrenalin).
- Game settings (some titles block non-standard resolutions).
- Conflict with Windows scaling (disable it for
.exe-game file in properties).
Solution: add custom resolution via NVIDIA Control Panel or edit the game config (for example, config.ini in the game folder).