This package provides an intuitive GUI for pueue task manager.
This repo is a nix flake. You can just add overlays.default
output to your
nixpkgs overlays.
{
inputs.pueue.url = "github:xFA25E/pueue";
outputs = { self, pueue, nixpkgs }: let
pkgs = import nixpkgs {
system = "your-system";
overlays = [ pueue.overlays.default ];
};
in {
# YOUR OUTPUTS
};
}
If you’ve installed it with your package manager, you’re done. pueue
command
is autoloaded, so you can call it right away.
It depends on the following packages:
- with-editor
Then put pueue.el file in your load-path
, and put the following in your init
file:
(require 'pueue)
Run pueue
command. You can press ?
key or call describe-mode
to discover
available keybindings. Dired-like marking also works.
- You can customize settings in the pueue group.
- Required version of pueue is 2.0.0. Although the visualization of tasks and detailed view will work with 1.0.0, some commands (like group) have changed their API since 2.0.0.
GPLv3