From v0.1.1 ZenKat includes the macro feature. You can put a macro in your config.toml
and run any other zenkat command quickly:
[macros]
list_pages = "list pages --sort 'word_count desc'"
zenkat macro list_pages
You can also run using the -r command with a time increment. This will put the macro in recursive mode, which calls the macro repeatedly at the interval you specify. This may be helpful for displaying a sidebar. For example:
[macros]
tasks_not_done = "tasks --filter 'status = not done'"
zenkat macro tasks_not_done -r 5