Categories: Ubuntu

Ubuntu 20.04 Change Desktop Icon Size

If the icons on your Ubuntu desktop have unexpectedly become excessively large, you may have accidentally altered the rendering size. A few wrong mouse scroll wheel rolls, or even a touchscreen or touchpad, might cause this easy error. To fix the problem, rotate the scroll wheel while pressing a ctrl button. If it still doesn’t help, try the following methods to fix your problem.

In Ubuntu 19.04 Gnome 3.32, the desktop icons are now managed by a gnome-shell extension. Though this extension causes so many bugs, on the plus side, the size of desktop icons may now be customized.

Resize Icons on Ubuntu

Sponsored

Step 1:
Open Ubuntu Software and search for Gnome desktop configuration tool called Gnome Tweaks. Install this extension.

Step 2:
Launch Gnome Tweaks. On the left side, you’ll find the navigation bar. Go to Extensions.

Step 3:
Click on settings for changing the specific settings for “Desktop Icons”. There, you’ll see three different options to adjust the size of the icons.

  • Small (48 pixels)
  • Standard (64 pixels)
  • Large (96 pixels)

Choose from these three default options according to your requirements.

If these three default options do not match your preferences, you may change their default settings by changing the extension prefs file.

Open terminal by pressing Ctrl+Alt+T on the keyboard, then run command to edit the file with the help of Gedit text editor:

sudo -H gedit /usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js

When the file opens, search for the lines ‘ICON SIZE,’ ‘ICON WIDTH,’ and ‘ICON HEIGHT.’ You may modify any of them according to your requirements.

Changing “ICON SIZE” will affect the icon sizes of your desktop, changing ‘ICON WIDTH’ will affect the width and horizontal spacing and changing ‘ICON HEIGHT’ affects the height of the icon selection box and vertical spacing.

After making all the changes, save the file and press Alt+F2. Open the command box and type r. Now press Enter to apply changes and to restart Gnome Shell.

Sponsored

How to Resolve Errors while Resizing Icons in Ubuntu

There is a known problem that a regular system update will not allow the changes you made in the previous steps. As an alternative, you can disable the system’s “Desktop Icon” extension and make your own using the instructions below:

Open the terminal and disable the system desktop icons extension by using the following command:

gnome-extensions disable desktop-icons@csoriano

Now use the following command to create the local extensions directory.

install -d $HOME/.local/share/gnome-shell/extensions

Copy the system’s ‘Desktop Icons’ extension to your local directory and rename it using the following command:

cp -r /usr/share/gnome-shell/extensions/desktop-icons@csoriano $HOME/.local/share/gnome-shell/extensions/desktop-icons@csoriano-local

Now, open metadata.json file to edit, and run the following command to match the new name by changing the UUID value.

gedit ~/.local/share/gnome-shell/extensions/desktop-icons@csoriano-local/metadata.json

Change the size of icons and spacing between them using the following extension.

gedit ~/.local/share/gnome-shell/extensions/desktop-icons@csoriano-local/prefs.js

Enable the local extension using the following command:

gnome-extensions enable desktop-icons@csoriano-local

Finally, restart Gnome Shell.

Conclusion

It was a detailed explanation of the ways to resize icons in Ubuntu. We have included the best possible process, so we suggest you follow all steps carefully to eliminate the chances of error. After resizing your icon, please make sure you visit our website to read more blogs on Linux.

Ubuntu Server Admin

Recent Posts

Web Engineering: Hack Week 2024

At Canonical, the work of our teams is strongly embedded in the open source principles…

20 hours ago

Ubuntu Weekly Newsletter Issue 873

Welcome to the Ubuntu Weekly Newsletter, Issue 873 for the week of December 29, 2024…

3 days ago

How to resolve WiFi Issues on Ubuntu 24.04

Have WiFi troubles on your Ubuntu 24.04 system? Don’t worry, you’re not alone. WiFi problems…

3 days ago

Remembering and thanking Steve Langasek

The following is a post from Mark Shuttleworth on the Ubuntu Discourse instance. For more…

3 days ago

How to Change Your Prompt in Bash Shell in Ubuntu

I don’t like my prompt, i want to change it. it has my username and…

3 days ago

The Silent Guardian: Why Bundler Checksums Are a Game-Changer for Your Applications

Introduction: A Fragile Trust The Ruby ecosystem relies heavily on RubyGems.org as the central platform…

4 days ago