Managing your tasks at the command line with TaskBook
Taskmaster
Boost your productivity from the Linux command line with the TaskBook task manager and note board.
How do you keep track of what you need to do? Chances are, that involves a calendar, a to-do list, or some arcane and complex mix of software. Although that's one way to do the deed effectively, it might not be the most efficient way to proceed.
Instead, you can manage all your tasks under one roof, or, in this case, from a single terminal window, and you can do it with a touch of visual panache. In this article, I take a look at a simple task management system called TaskBook, which can help anyone get and stay organized quickly and easily.
Why the Command Line?
Working from the command line goes beyond merely grabbing an opportunity to embrace your inner geek. Using the terminal to organize yourself has several advantages over the use of desktop applications.
The command line stays out of your way until you need it. A terminal window is usually small and unobtrusive and doesn't block out windows with your other work. Once you get into the flow of using the command line, you'll find a keyboard is faster than using a mouse.
Working in the terminal doesn't eat up system resource like many graphical applications, which is important for those of us who run Linux on older hardware that doesn't have the memory and processing power that modern systems pack.
With no notifications and alerts constantly flashing and blaring at you, the terminal represents the ultimate in calm technology, encouraging you to be more mindful and regular in checking what you're supposed to be doing to make sure you're on top of it all.
TaskBook [1] gives you all of that, and a bit more.
Getting Started
To begin, check your Linux distribution's package manager to see whether you can install TaskBook there. If TaskBook is not available, you can use that same package manager to install a piece of software called npm that enables you to install software and libraries written with Node.js (an environment for running JavaScript code outside of a web browser). NPM (Node Package Manager) not only puts TaskBook on your computer, it also installs the various bits and pieces that TaskBook needs to run.
With NPM installed, crack open a terminal window and run the command:
sudo npm install taskbook
The installation process should only take a few seconds. Once that's out of the way, you're ready to go.
Configuring TaskBook
This next step is optional. To configure TaskBook, you can edit a JSON (JavaScript Object Notation) file, which is a data format that both people and computers can easily read. The file in question is called .taskbook.json
, and you can find it at the top of your /home
directory to edit in your favorite text editor.
The file has only three options (Figure 1). The first is taskbookDirectory
, which indicates the path to the folder that contains your task list. The default is the folder .taskbook
at the top of your /home
directory. If you prefer, for example, to save your task in a shared folder or sync your tasks with an instance of a file-sharing application like Nextcloud, change the first entry to the path to the file (e.g., ~/Nextcloud/)
.
The second option is displayCompleteTasks
, which controls whether TaskBook includes tasks you've finished in your list of tasks (Figure 2). Change this to false
if you find that completed tasks clutter up the view.
The third option is displayProgressOverview
, which controls whether TaskBook shows how many tasks are completed or are in progress at the bottom of your list (Figure 3). Again, change this to false
if you want to hide that information.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.