My spin on what to do after installing Ubuntu

In this guide I will show you actual tips for making your experience better, not just installing random extensions to make your system look prettier. I'm the type of person that rarely changes his wallpaper even.

If you like what you see here, I also made a script that replicates everything you see in this tutorial. It can be downloaded here.

Table of contents

Enable right click > new document

When you create a new text file in this folder, it will appear in your right click menu.

Enable right click > delete permanently/create a link

Clicking an active app will minimize/maximize it, or show you previews of its active windows.

Press Ctrl + Alt + T and type gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize-or-previews' into the terminal.

Make middle clicking close an active app.

Press Ctrl + Alt + T again and type gsettings set org.gnome.shell.extensions.dash-to-dock middle-click-action 'quit' into the terminal.

Install a clipboard history extension

Open Firefox and navigate to https://extensions.gnome.org/extension/4839/clipboard-history/

Just follow the instructions on the site and install it.

I recommend changing the width of the clipboard extension, and to set a shortcut for launching it.


You can access the settings of the extension right here

Install GDebi, Gnome Extensions and Dconf

GDebi will make it so you can just double click on a .deb and install it, Gnome Extensions helps you manage your extensions, and Dconf can be used if you want to dig deeper into your extensions' settings.

sudo apt install gdebi gnome-extensions-app dconf-editor

Install flatpak

Snaps are fine, but let's be honest, most developers focus on flatpak and actually update the apps published on flathub. So let's add it into our system.

sudo apt install flatpak

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Now you can install any app from flathub, by typing flatpak install appname

Launch .jar files from the app menu

This is one of the stupidest things I have ever encountered on Ubuntu.

If you want to launch a .jar minecraft launcher, such as TLauncher or SKlauncher, you will need to:

Create this shell script. You can place it literally anywhere.

Then you navigate to /home/USERNAME/.local/share/applications/ and create a .desktop file pointing at the shell script... I told you. Really dumb.

[Desktop Entry]
Name=MC - Minecraft
Type=Application
Exec=/home/tsugu/Desktop/Minecraft_Launch.sh
Icon=/home/tsugu/Pictures/mc.png
Comment=Minecraft
Terminal=false

Your Minecraft launcher should appear in the app menu now.

Add your own shortcuts

This is just my preference, obviously. But I found that these shortcuts make working with my system the easiest.

Disable logging

I can't believe I have to add this one, but I was just playing Cities Skylines and my syslog filled up my entire hard drive. So anyways, here's how to clear and permanently disable logging.

  1. sudo systemctl stop rsyslog
  2. sudo systemctl disable rsyslog
  3. cd /var/log/
  4. sudo sh -c 'echo > /var/log/syslog' (Or you can just rm -rf it)

Fix AppImages

Certain AppImages still depend on the old Libfuse2 library, and so they won't launch on the latest Ubuntu. Install Libfuse by typing sudo apt install libfuse2