Skip to content

Instantly share code, notes, and snippets.

@timcase
Last active November 2, 2019 17:48
Show Gist options
  • Save timcase/5a3bddec1ed58bd725eedc25b5ead6b3 to your computer and use it in GitHub Desktop.
Save timcase/5a3bddec1ed58bd725eedc25b5ead6b3 to your computer and use it in GitHub Desktop.
waitbydate
INSIDE OF .taskrc:
report.monwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.monwait.description=tasks sorted by due date ascending
report.monwait.filter=wait:mon
report.tuewait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.tuewait.description=tasks sorted by due date ascending
report.tuewait.filter=wait:tue
report.wedwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.wedwait.description=tasks sorted by due date ascending
report.wedwait.filter=wait:wed
report.thuwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.thuwait.description=tasks sorted by due date ascending
report.thuwait.filter=wait:thu
report.friwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.friwait.description=tasks sorted by due date ascending
report.friwait.filter=wait:fri
report.satwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.satwait.description=tasks sorted by due date ascending
report.satwait.filter=wait:sat
report.sunwait.columns=id,start.active,project,tags,wait,wait.remaining,due,until,description
report.sunwait.description=tasks sorted by due date ascending
report.sunwait.filter=wait:sun
INSIDE OF .bashrc:
waitbydate () {
echo "\nMon\n";
task rc.verbose=label monwait;
echo "\nTue\n";
task rc.verbose=label tuewait;
echo "\nWed\n";
task rc.verbose=label wedwait;
echo "\nThu\n";
task rc.verbose=label thuwait;
echo "\nFri\n";
task rc.verbose=label friwait;
echo "\nSat\n";
task rc.verbose=label satwait;
echo "\nSun\n";
task rc.verbose=label sunwait;
}
USE:
$ waitbydate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment