How to Change HiDPI Scaling on Linux

Facebook
Twitter
LinkedIn
Reddit
Email

HiDPI (High Dots Per Inch) displays have become more common in recent years, offering higher resolution and sharper images. However, sometimes the text and icons can appear too small, making it difficult to read and interact with. Fortunately, Linux offers a way to adjust HiDPI scaling settings to make the display more readable. In this guide, we will show you how to change HiDPI scaling settings on Linux.

Using xrandr

xrandr is a command-line tool used in Linux to interact with the X11 display server and manage the screen resolution, refresh rate, rotation, and other display settings. The tool allows users to add, remove, and modify display modes, adjust the position of displays, and change the screen orientation.

The xrandr tool is often used to configure multi-monitor setups, including setting the relative position and orientation of the displays. It can also be used to adjust the scaling of HiDPI displays to make them more readable.

The xrandr tool is included in most Linux distributions by default and can be accessed from the command line. It provides a simple and powerful way to manage display settings without requiring a graphical user interface.

Step 1: Open Terminal

Open the terminal by pressing Ctrl + Alt + T on your keyboard or by searching for it in the applications menu.

Step 2: Install xdpyinfo

On Debian/Ubuntu-based distros, run:

sudo apt install x11-utils

On Fedora/RPM-based distros, run:

sudo dnf install xorg-x11-utils

On Arch-based distros, run:

sudo pacman -S xorg-xdpyinfo

Step 3: Check Display Density

Next, check the display density or PPI (Pixels Per Inch) of your display. To do this, run:

xdpyinfo | grep -B 2 resolution

This will display the resolution and density of your display in pixels per inch (PPI).

Step 4: Install xrandr

On Debian/Ubuntu-based distros, run:

sudo apt install x11-xserver-utils

On Fedora/RPM-based distros, run:

sudo dnf install xorg-x11-server-utils

On Arch-based distros, run:

sudo pacman -S xorg-xrandr

Step 5: Adjust Scaling Settings

Once you have determined your display resolution and density, you can adjust the scaling settings. The scaling settings can be adjusted using the xrandr command.

To adjust the scaling settings, run:

xrandr –output [OUTPUT NAME] –scale [SCALE FACTOR]x[SCALE FACTOR]

Replace [OUTPUT NAME] with the name of your display (e.g., eDP-1) and [SCALE FACTOR] with the scaling factor you want to use (e.g., 1.5). The scaling factor determines how much to increase the size of text and icons. To get the name of your display, run:

xrandr

This command will display information about the current display configuration, including the available outputs and their names.

For example, to set the scaling factor to 1.5 on a display named eDP-1, run:

xrandr –output eDP-1 –scale 1.5×1.5

Step 6: Make Scaling Settings Persistent

Once you have adjusted the scaling settings to your liking, you can make them persistent so they are applied every time you start your Linux desktop.

To do this, create a new file called .xprofile in your home directory, if it does not already exist, and add the following line to the file:

xrandr –output [OUTPUT NAME] –scale [SCALE FACTOR]x[SCALE FACTOR]

Replace [OUTPUT NAME] and [SCALE FACTOR] with the values you used in step 5.

For example, if you used a scaling factor of 1.5 on a display named eDP-1, you would add the following line to the .xprofile file:

xrandr –output eDP-1 –scale 1.5×1.5

Save the file and restart your Linux desktop to apply the changes.

Using wlr-randr

If you are running a Linux distribution with a Wayland display server, you may not be able to use xrandr to adjust your HiDPI scaling settings. Instead, you can use wlr-randr, a tool specifically designed for Wayland, to change your scaling settings.

Step 1: Open Terminal

Open the terminal by pressing Ctrl + Alt + T on your keyboard or by searching for it in the applications menu.

Step 2: Install xdpyinfo

On Debian/Ubuntu-based distros, run:

sudo apt install x11-utils

On Fedora/RPM-based distros, run:

sudo dnf install xorg-x11-utils

On Arch-based distros, run:

sudo pacman -S xorg-xdpyinfo

Step 3: Check Display Density

Next, check the display density or PPI (Pixels Per Inch) of your display. To do this, run:

xdpyinfo | grep -B 2 resolution

This will display the resolution and density of your display in pixels per inch (PPI).

Step 4: Install wlr-randr

On Debian/Ubuntu-based distros, run:

sudo apt install swaybg wlr-randr

On Fedora/RPM-based distros, run:

sudo dnf install wlr-randr

On Arch-based distros, run:

sudo pacman -S swaybg wlr-randr

Step 5: Adjust Scaling Settings

Once you have determined your display resolution and density, you can adjust the scaling settings using wlr-randr. To do this, run:

wlr-randr –output [OUTPUT NAME] –scale [SCALE FACTOR]

Replace [OUTPUT NAME] with the name of your display (e.g., eDP-1) and [SCALE FACTOR] with the scaling factor you want to use (e.g., 1.5). The scaling factor determines how much to increase the size of text and icons. To get the name of your display, run:

wlr-randr

This command will display information about the current display configuration, including the available outputs and their names.

For example, to set the scaling factor to 1.5 on an output named HDMI-A-1, run:

wlr-randr –output HDMI-A-1 –scale 1.5

Step 6: Make Scaling Settings Persistent

Once you have adjusted the scaling settings to your liking, you can make them persistent so they are applied every time you start your Linux desktop.

To do this, create a new file called .config/wlr-randr.sh in your home directory and add the following lines to the file:

#!/bin/sh
wlr-randr –output [OUTPUT NAME] –scale [SCALE FACTOR]

Replace [OUTPUT NAME] and [SCALE FACTOR] with the values you used in step 5.

For example, if you used a scaling factor of 1.5 on an output named HDMI-A-1, you would add the following lines to the .config/wlr-randr.sh file:

#!/bin/sh
wlr-randr –output HDMI-A-1 –scale 1.5

Save the file and make it executable by running:

chmod +x ~/.config/wlr-randr.sh

Finally, add the following line to your Wayland startup file (e.g., ~/.bashrc or ~/.xinitrc) to ensure the script runs every time you start your desktop environment:

sh ~/.config/wlr

Conclusion

In conclusion, if you are using a high-resolution display with Linux, adjusting the scaling settings can make a significant difference in the user experience. We’ve shown you two tools, xrandr and wlr-randr, that can help you easily adjust your HiDPI scaling settings. While xrandr is suitable for systems running the X server, wlr-randr is specifically designed for Wayland display servers. Regardless of which tool you choose to use, make sure to determine your display resolution and density first, and then experiment with different scaling factors until you find the best setting for your needs. Don’t forget to make your scaling settings persistent so that they apply every time you start your desktop environment. With these tips, you can enjoy a better Linux experience on your HiDPI display.

Please Leave Feedback and Corrections in the Comments

More to Explore

Table of Contents

Leave a Reply

Your email address will not be published. Required fields are marked *


What are you looking for?

Type in a question or keyword below

Frequently Asked Questions

Why are your prices so high?

Our prices actually aren’t that high when you compare our laptops to models in the same class. Our Aon S1 is in the same class as the Dell XPS 13, Lenovo Thinkpad X1, and MacBook Pro. When you compare against these models, you will see our pricing is actually very reasonable, especially considering the fact that our Aon S1 has many advantages over these other models, including user-upgradeability, user-serviceability, and customizability.

Also, it’s important to note that unlike other laptop manufacturers that do final assembly in China, our laptops are built-to-order in the United States. This enables us to provide a much broader array of customization options compared to companies like Dell, Lenovo, and Apple, although at a higher cost.

Read More

Are all the parts soldered to the motherboard?

In many modern laptops, especially thin and light models (like Apple’s MacBook Air or Pro, Dell’s XPS 13, or many of Lenovo’s ThinkPad X1 Carbon models), the memory, storage, battery, and wireless module are often soldered directly onto the motherboard. This is done to save space and allow the laptop to be thinner, but it means that the RAM and SSD are not user-upgradeable.

However, as part of our commitment to the Right to Repair Movement, the memory, storage, battery, and wireless module all MALIBAL laptops are user-upgradeable or user-replaceable.

Do any of your laptops support coreboot?

Coreboot is an open-source project aimed at replacing the proprietary BIOS (Basic Input/Output System) firmware found in most computers. BIOS firmware is the first piece of software that runs when a computer is turned on. It initializes the hardware and starts the operating system.

Coreboot is designed to perform only the minimum amount of hardware initialization necessary to load and run a modern 32-bit or 64-bit operating system. This minimalist approach not only reduces the complexity and potential attack surface of the firmware, but it can also speed up the system boot time significantly.

Coreboot can be used with payloads such as a Linux kernel, SeaBIOS, or UEFI firmware to provide a complete firmware solution. It’s appreciated by users who want to have more control over their hardware, value the transparency and security that come from open-source software, or have specialized requirements.

Coreboot with EDK II is supported on our Aon line of laptops.

Can your laptops be charged or powered via USB-C?

USB-C is revolutionizing the way we charge laptops. As a universal charging standard, USB-C has a number of advantages that make it particularly suited for this task.

First and foremost, it offers high power delivery capability – up to 100 watts – which is sufficient to charge even power-hungry laptops. This eliminates the need for proprietary laptop chargers and allows for charging via common adapters, power banks, or even other laptops.

Additionally, USB-C is a reversible connector, meaning it can be inserted either way, making it more user-friendly.

It also supports data transfer and display output, allowing for a single cable to provide power, transfer data, and connect to external monitors.

All MALIBAL laptops can be powered via the Thunderbolt 4 port.

Who is MALIBAL?
MALIBAL is an innovative technology company that produces high-performance, custom linux laptops for developers and content creators; mobile workstations for engineers, scientists, video editors, 3D modelers, and animators; and mobile servers for enterprise applications. On our site, you will find information about the best linux laptops, such as our Aon S1 and Aon L1 models, our customers, new articles, latest news, guides, features, and more.
How do I get a quote?

If you need a quote for any reason, e.g., to submit to accounting for approval, before ordering, simply add the laptop(s) you want to purchase to the Cart, then click Checkout, and on the checkout page, click Convert Cart to Quote. We will email you a PDF of the quote with a link to make payment once you are ready to complete the order.

How do I cancel an order?

You may cancel an order any time up until it ships. After it ships, you will not be able to cancel it, but will instead have to use our return policy in order to return the laptop for a refund. To cancel an order, simply open a sales ticket or sales chat and give the representative your order information, and they will cancel the order for you and send you confirmation via email and text.

 

How do I make a change to my order?

You may make changes to your order up until it ships. To modify an order, simply open a sales ticket or sales chat and give the representative your order information and specify which changes you want to make.

When is my order shipping?

If all parts are in stock, the average build time for laptops is 5-7 business days. This means laptops will ship 5-7 business days after the order is placed. If a component is backordered, it will say which parts are backordered in your order confirmation email.

To see the estimated delivery date of your laptop, please check your order confirmation email for the Estimated Delivery Date. You can also see this information on your My Account > Order Details page. The estimated delivery date is the build time (plus backorder delay, if applicable) plus the shipping time.

Once your laptop ships out, we will email you the tracking information. An adult will need to be at the address to sign for the package when it arrives.

How do I track my order after it ships?

You can view your tracking status via the order details page in your account.