mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
38 lines
1 KiB
Bash
Executable file
38 lines
1 KiB
Bash
Executable file
#! /bin/bash
|
|
|
|
# Small script to create a fragment of output for display on the front page
|
|
# of taskwarrior.org, as a teaser.
|
|
|
|
rm pending.data completed.data undo.data
|
|
|
|
echo 'data.location=.' > x
|
|
echo '_forcecolor=on' >> x
|
|
echo 'defaultwidth=120' >> x
|
|
echo 'include /usr/local/share/doc/task/rc/dark-violets-256.theme' >> x
|
|
echo 'include /usr/local/share/doc/task/rc/holidays-US.rc' >> x
|
|
echo 'color.alternate=' >> x
|
|
|
|
echo 'report.list.columns=id,project,priority_long,start,due,recur,age_compact,tags,description' >> x
|
|
echo 'report.list.labels=ID,Project,Pri,Started,Due,Recur,Age,Tags,Description' >> x
|
|
echo 'report.list.sort=due+,priority_long-,project+' >> x
|
|
|
|
# Now the visible part.
|
|
|
|
echo
|
|
echo $ task add project:Cake Mix the ingredients
|
|
task rc:x add project:Cake Mix the ingredients
|
|
|
|
echo
|
|
echo $ task add project:Cake Bake the cake depends:1
|
|
task rc:x add project:Cake Bake the cake depends:1
|
|
|
|
echo
|
|
echo $ task add project:Cake Eat the cake depends:2
|
|
task rc:x add project:Cake Eat the cake depends:2
|
|
|
|
echo
|
|
echo $ task 2 info
|
|
task rc:x 2 info
|
|
|
|
exit
|
|
|