Skip to content

Instantly share code, notes, and snippets.

@AnatolyRugalev
Forked from fmartingr/dotask.sh
Created August 18, 2019 12:44
Show Gist options
  • Save AnatolyRugalev/73542fe7b508c16e88c9f0006546c1d9 to your computer and use it in GitHub Desktop.
Save AnatolyRugalev/73542fe7b508c16e88c9f0006546c1d9 to your computer and use it in GitHub Desktop.
Taskwarrior helper for rofi
#!/bin/bash
TMPFILE='/tmp/rofi-dmenu-taskwarrior'
task rofi rc.verbose=nothing > $TMPFILE
TASK=`rofi -dmenu -p "Task: " -i -input $TMPFILE`
TASK_ID=`echo $TASK | cut -f1 -d' '`
echo $TASK_ID > /tmp/dotask-id
task start $TASK_ID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment