Icons and text appearing tiny on a 2K or 4K monitor often signal display scaling issues on Linux desktops. HiDPI (High Dots Per Inch) screens pack more pixels into the same physical space, which improves sharpness but can make interface elements difficult to see. Fractional scaling addresses this by letting you set display scaling to values like 125% or 150%, instead of just 100% or 200%. This flexibility helps you find the right balance between readability and screen real estate, especially if integer scaling makes things too large or too small.
Enabling Fractional Scaling Using Display Settings
Super (Windows) key and searching for Settings. Select the gear icon to launch the settings application.Fractional scaling may trigger a warning about increased power usage or reduced display sharpness. This occurs because the system must render graphics at non-integer scales, which requires extra processing and can sometimes cause slight blurriness or performance drops on less powerful hardware.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Using Command-Line Tools for Advanced Fractional Scaling
Some Linux setups or older distributions might not offer robust fractional scaling through the graphical interface. In these cases, command-line methods provide more precise control and additional scaling values.
Enable Experimental Fractional Scaling via Terminal
gsettings set org.gnome.mutter experimental-features "['x11-randr-fractional-scaling']"
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
Manual Scaling with xrandr for Custom Setups
xrandr --listmonitors
xrandr --output eDP-1 --scale 0.8x0.8
Replace eDP-1 with your display identifier. The scaling factor 0.8x0.8 corresponds to 125% scaling (1/0.8 = 1.25). Adjust the numbers to suit your needs, such as 0.75x0.75 for 133% or 0.67x0.67 for 150%.
xrandr command to your startup applications. Open the Startup Applications tool, add a new entry, and paste your command there.Optimizing Multi-Monitor HiDPI Setups
Running a HiDPI laptop screen alongside standard-resolution external monitors can cause inconsistent scaling. The best approach is to set the HiDPI display to 200% scaling and the external monitors to 100%. For smoother results, use a Wayland session, which supports independent scaling per monitor more reliably than X11.
xrandr commands for each display, then add the script to your startup applications.Troubleshooting Common Fractional Scaling Issues
- Blurry Applications: Some apps, especially those using older frameworks, may look blurry. For Electron-based apps, append
--force-device-scale-factor=1.5to the launch command. For Java apps, set environment variables:export GDK_SCALE=2andexport GDK_DPI_SCALE=0.5. - Scaling Resets After Reboot: Ensure your scaling commands or scripts are set to run at startup. Double-check that you’re using the correct display server for your chosen scaling method.
- Performance Drops: Fractional scaling increases GPU and CPU load. If you notice lag, consider using integer scaling (100% or 200%) and adjust font sizes as needed, or update your graphics drivers.
- Snap and Flatpak Apps: Some packaged applications may not respect system-wide scaling. Check for updates or alternative versions if you encounter persistent issues.
Fine-tuning fractional scaling on Linux HiDPI setups improves readability and comfort without sacrificing display sharpness. Experiment with scaling values and methods to match your workflow and hardware, and revisit your settings after system updates for the best results.






