Categories: DebianLinuxShell

Three Ways to Change the Text Size on Debian 10 Desktop

If you have a problem reading text on your Debian screen, you can easily adjust the text size. In some situations, the font is too small to see it properly, and there are different options to change the font size on a Debian GNOME Desktop.

In this article, we will explain how to change the text size on your screen using the following methods:

  1. Through Debian Settings Utility
  2. Through Gnome Tweaks Tool
  3. Through the Terminal

We have run the commands and procedure mentioned in this article on a Debian10 OS.

Method 1: Through Debian Settings Utility

The size of the text on the screen can be changed from the Debian Settings utility. To open the Settings utility, go to the top right corner of your desktop and click on the downward arrow. It will open up a drop-down menu, click on the Settings icon as shown below:

When the Settings window opens, select the Universal Access menu from the left pane. On the right pane, you will see the Large Text slider button. It by default enlarges the text by 1.2 times for better readability. Click on the button to toggle it to on position. By doing so, you will notice the increased text size on your screen.

Method 2: Through Gnome Tweaks Tool

There is another way of changing the text size using the Gnome Tweaks Tool. You can install it using the Terminal. To launch the Terminal application in your system, go to the Activities tab in the top left corner of your desktop. Then in the search bar, type terminal. When the Terminal icon appears, click on it to launch it.

Now to install Gnome Tweaks Tool, run the following command as sudo in Terminal:

$ sudo apt install gnome-tweak-tool

When prompted for the password, enter the sudo password.

Once the installation is completed, you can launch the Tweaks tool from the Dash menu or the from the Applications list.

When the Tweaks tool is opened, select the Fonts tab from the left pane. Here, you can configure text settings for your system.

Method 3: Through the Terminal

The size of the text can also be changed directly from the Terminal application in your Debian system. To do so, use the following command syntax in Terminal:

$ gsettings set org.gnome.desktop.interface text-scaling-factor <scaling_factor-value>

For instance to scale the text size 1.5 times, run the following command in Terminal:

$ gsettings set org.gnome.desktop.interface text-scaling-factor 1.5

To reset the text size back to default settings, you can run the following command in Terminal:

$ gsettings reset org.gnome.desktop.interface text-scaling-factor

That's all there is to it! I hope it will be helpful if you ever need to change the size of the text in your Debian OS.

Karim Buzdar

About the Author: Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications. As an IT engineer and technical author, he writes for various web sites. You can reach Karim on LinkedIn

Recent Posts

How to Install Magento 2 on AlmaLinux

Magento is a free and open-source e-commerce platform written in PHP. It is simple, easy…

1 year ago

How to Install ISPConfig Hosting Control Panel with Apache Web Server on Ubuntu 24.04

ISPConfig is an open-source control panel that allows users to manage multiple servers from a…

1 year ago

How to Test your Email Server (SMTP) Using the Telnet Command

As a Linux administrator, you may find it necessary to troubleshoot or test your Simple…

1 year ago

Managing Network Interfaces and Settings on Ubuntu 24.04 with nmcli

Ubuntu 24.04, like many modern Linux distributions, relies on the NetworkManager for managing network connections.…

2 years ago

Using Restic Backup on Ubuntu 24.04

Restic is a modern, open-source backup program designed for efficiency, security, and simplicity. It enables…

2 years ago

Installing phpMyAdmin on Rocky Linux 9 and Securing it with Let’s Encrypt SSL

phpMyAdmin is a popular free tool written in PHP intended to administer MySQL and MariaDB…

2 years ago