A command-line task manager
In Context
Tasks have a tendency to accumulate over time resulting in unwieldy to-do lists. To filter out unwanted tasks, you can use the context
command to specify the filtering criteria (Listing 7).
Listing 7
Context
$ dstask context +private -basement project:spring cleaning
The command in Listing 7 tells dstask to only pay attention to tasks tagged as private
that do not contain the basement
keyword, but that do belong to the spring cleaning
project. For now, the tool ignores all other tasks. If you create a new task at this point, it will automatically be tagged private
and will belong to the spring cleaning
project.
To reset the filter, type:
dstask context none
This tells dstask to get back to work on all existing tasks again. A call to dstask reveals the active context. If you are missing a task, check the context first (Figure 5).

Templates
You probably need to clean up your desk far more often than your basement. For recurring tasks, templates can save you some typing (Figure 6). Templates are initially conventional tasks, but you create them using the template
keyword (Listing 8, line 1). To show all existing templates, enter
dstask show-templates
which ignores any remaining actions.
Listing 8
Templates
01 $ dstask template clean up desk +Private P3 project:administration 02 $ dstask add template:4 sort pencils

To create a new task based on a template, you run add
again, but reference the template. The command from line 2 of Listing 8 tells dstask to create a new task that takes all the settings from the template ID 4
, but uses the Sort pencils string as the summary.
Git Games
The dstask git log
command (Figure 7) returns the latest completed actions. Actions can be undone by typing dstask undo 3
, where the number (3
) indicates the number of actions to be revoked, starting with the last action performed.

If you want to synchronize your task collection with other devices, dstask needs to be installed on those devices as well. In addition, you need a Git repository that all devices can access, such as one on GitHub. Make sure that only you have access to the repository; do not make it public to the entire Internet.
First, create the ~/.dstask/
directory on all devices and clone the contents of the external Git repository to it using git clone
. You can now create and manage your tasks in the usual way. To tell dstask to push all the changes to the external Git repository, call dstask sync
.
On another PC, call dstask sync
again. This tells dstask to sync with the Git repository and fetch the current state. Under the hood, dstask calls the git pull
and git push
commands. If you are familiar with Git, you can run other Git commands via the dstask git
action.
« Previous 1 2 3 4 Next »
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
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.