How I Saved My Muscle Memory with Essential Ubuntu Customizations After Migrating

Switching between Windows and Ubuntu often feels like moving into a new house where the light switches are in the wrong places. You have the power of the Linux terminal, but you miss the “little things” the intuitive gestures, the clipboard history, and the simple convenience of a hibernate button.

After migrating my daily driver, I’ve compiled the essential tweaks to bring Windows-level polish to your Ubuntu environment. So that you don’t have to fight with your muscle memory

1. Bringing Back Hibernation

While “Suspend” is fine, “Hibernate” is essential for saving battery during long breaks. Ubuntu hides this by default, but we can restore it.

For that i used a third party script which automates the heavy lifting of swap file configuration you can check it out here and follow the instructions as stated there and reboot system and then systemctl hibernate command should work and then we can proceed with adding the UI button for it.

1. First you’ll have to install GNOME Shell integration chrome extension

2. Install the connector for it with the below command

3. Add the extension Hibernate Status Button now and if all worked correctly you should be able to click hibernate in power menu and hibernate your pc

4. Troubleshooting: If the button doesn’t appear even though systemctl hibernate works, you may need to tweak your GNOME policy settings as detailed in this issue thread.

2. Setting Charge Thresholds

Windows laptops often have “Battery Care” modes. On Linux, we use TLP to ensure our hardware lasts years, not months. For my setup, I keep the battery between 60% and 80% to minimize wear while plugged in.

Verify Support First Not every laptop firmware allows manual charge thresholds. Before you dive into the config, you can verify if your hardware is playing ball by running

Look for the “Battery Care” or “Thresholds” section in the output. If it says “supported,” you’re good to go with the commands below.

Make it permanent, Open your config file

And ensure these two lines are active (uncommented)

3. Touchpad Gestures in Chrome

One of the most missed features is the “two-finger swipe” to go back or forward in the browser. You can force-enable this by modifying the Chrome desktop entry.

1. Copy the desktop file to your local folder

2. Edit the file

3. Update the Exec lines: Find the lines starting with Exec= and append the following flag: --enable-features=TouchpadOverscrollHistoryNavigation.

It should be something like this after your modification

Note: Update all three Exec lines (Standard, Incognito, and New Window) to ensure gestures work in every mode.

4. Clipboard with CopyQ

Windows + V is a lifesaver. On Ubuntu, CopyQ is the superior alternative. It handles text, images, and snippets with ease.

Installation & Startup:

To ensure it plays nice with the display server, add it to your Startup Applications with a slight delay as below

Name: CopyQ
Comment: A cut & paste history utility
Command:

Pro Tip: Go to Settings > Keyboard > View and Customize Shortcuts > Custom Shortcuts > Add Custom Shortcut and map Super + V with copyq toggle command to show the CopyQ menu for that native Windows feel.

5. Fast Screen Snips

The modern Windows “Snipping Tool” shortcut is Shift + Win + S. You can replicate this exactly in Ubuntu:

  1. Go to Settings > Keyboard > View and Customize Shortcuts.
  2. Select Screenshots.
  3. Change “Take a screenshot interactively” to Shift + Super + S.

With these five tweaks, the “friction” of switching operating systems almost disappears. You get the stability of Linux with the intuitive UX of a modern desktop. Have fun

Have a specific Ubuntu tweak that saved your workflow? Let me know in the comments

Umar Arafath

Hey there! I'm Umar Arafath, the face behind unofficialmentor, a passionate Software Engineering undergraduate diving into the IT industry. Even though my formal title may be a student, my heart lies in the field of DevOps. I share my daily learning adventures in this blog so it'll help me remember stuff. It's a win-win end of the day, I reinforce my knowledge, and you learn something new. Please be kind enough to leave a comment! Your feedback fuels my growth. Away from the desk, catch me on the cricket field or badminton court, polishing my physique. I'm also a motorbike enthusiast, who finds riding as a healing spell for my inner peace.

Leave a Reply

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