Linux tools for improving your time management

Whether you need help to stay focused, maintain timeliness, or find shortcuts to avoid repetition, these Linux tools have you covered.
165 readers like this.

Productivity is a subjective term, but essentially, it's a measurement of how efficiently a particular task is completed. Everyone has different things that keep them productive—some people need help staying on task, some people need a particular kind of work environment, some people need alerts and reminders to avoid missed deadlines, and some need assistance with repetitive, manual chores. Luckily, there are myriad tools and technologies available to provide you the specific support you need. In particular, if you are a Linux user, there are some tweaks that can help you increase your productivity; here are two that I use on a regular basis.

Clipboard Indicator

Are you someone who uses a lot of copy and paste functions between several documents in your day to day usage? If so, then Clipboard Indicator should become one of your go-to solutions. Install Clipboard Indicator as a GNOME extension to your Linux distribution. In my experience, it has a minimum performance impact on GNOME Shell—at least, less than other solutions I have tried.

This tool adds an indicator menu to the top panel and caches your clipboard history. You can set the history size, preview the number of characters you want to view. It shows notifications on copy and acts as a temporary space to store whatever you copy.

Clipboard indicator menu on GNOME desktop

The easiest way to install the extension and connector is to use your distro's package manager.

For Fedora, CentOs, or RHEL, use:

$ sudo dnf install chrome-gnome-shell

On Ubuntu or Debian, use apt install instead.

Once it's installed, go to https://extensions.gnome.org/ and check your installed extensions.

If you use Firefox, use the Firefox browser add-on and install the GNOME Shell integration. You will see a small footprint icon in your Firefox toolbar, which will take you to the Extensions page. On that page, search for the Clipboard Indicator extension and toggle to enable it.

Now, follow the prompts to download the GNOME extension and activate it. You can check your ~/.local/share/gnome-shell/extensions location to view the extension.

Voila! You'll see a new icon in the top-right corner of your GNOME desktop. Copy anything and experiment with its settings.

A quick installation via Git can also be performed by cloning the repo into your local gnome-shell extensions directory using the command:

$ git clone https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator.git ~/.local/share/gnome-shell/extensions/clipboard-indicator@tudmotu.com

Go to the GNOME Tweak tool and activate it from the Extensions screen.

Pomodoro

Using the pomodoro timer on GNOME

The Pomodoro Technique is a time management philosophy that aims to provide the user with maximum focus. Each 25-minute work period is called a "pomodoro," (Italian for tomato); after each pomodoro, you take a five-minute break. Every four pomodoros, or 100 minutes, you then take a 15 to 20-minute break. If you have a large and varied to-do list, using the Pomodoro Technique can help you crank through projects faster by forcing you to adhere to strict timing.

The installation procedure can be managed through the GNOME Tweaks webpage (extensions.gnome.org) or through the command line. For the latter, choose your distribution of Linux along with the release version and install using the following command:

$ sudo dnf install gnome-shell-extension-pomodoro 

or if you wish to build from source:

$ git clone -b gnome-3.34 https://github.com/codito/gnome-pomodoro.git 
$ cd gnome-pomodoro 

The source code has a number of dependencies, many of which are likely already installed. To make sure of it, install of the following.

$ sudo dnf install autoconf-archive gettext vala vala-tools pkg-config desktop-file-utils glib2-devel gtk3-devel libappstream-glib-devel libappindicator-gtk3-devel libcanberra-devel libpeas-devel sqlite-devel gom-devel gobject-introspection-devel gsettings-desktop-schemas-devel gstreamer1-devel 

Inside unpacked directory of the source code, complete the build.

$ ./autogen.sh --prefix=/usr --datadir=/usr/share 
$ make 
$ sudo make install 

No matter how we install, go to GNOME Tweaks and turn on the pomodoro timer. If you don't already have GNOME Tweaks, installing it through your package manager or in your software installer of choice. For example, on Fedora:

$ sudo dnf install gnome-tweaks 

On Ubuntu or Debian, use apt install instead.

Pomodoro desktop integration is currently available for GNOME Shell, and they plan to support more desktops in the future. Check out https://gnomepomodoro.org/ for the latest on the project. For KDE users in the meantime, there is an alternative called Fokus.

Productivity on Linux

Productivity is personal, but it's something we all are after in one way or another. Each of these tools has either saved me time or made my working time more productive, and they're a quick integration with Linux.

Do you have a favorite productivity tool? Share it in the comments!

What to read next
Sudeshna is from Kolkata and currently working for the Red Hat Middleware team in Pune, India. She loves to explore different open source projects and programs. She started contributing to Open Source a couple of years back as an Hacktober Participant since then she has been an avid blogger at Dzone on Python and Data Science. She enjoys her free time stargazing and loves continental cuisine. She is an RHCSA and is working her way to RHCA.
Sudeshna is from Kolkata and currently working for the Red Hat Middleware team in Pune, India. She loves to explore different open source projects and programs. She started contributing to Open Source a couple of years back as an Hacktober Participant since then she has been an avid blogger at Dzone on Python and Data Science. She enjoys her free time stargazing and loves continental cuisine.

1 Comment

This is really cool

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.