mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
23 lines
435 B
Text
Executable file
23 lines
435 B
Text
Executable file
|
|
|
|
for theme in $PWD/../../rc/*.theme
|
|
do
|
|
cat <<EOF >>x
|
|
data.location=.
|
|
confirmation=off
|
|
_forcecolor=on
|
|
include $theme
|
|
EOF
|
|
|
|
echo "--- $theme -----------------------------------------------------"
|
|
echo '$ task list'
|
|
task rc:x list
|
|
echo '$ task summary'
|
|
task rc:x summary
|
|
echo '$ task ghistory'
|
|
task rc:x ghistory
|
|
echo '$ task calendar'
|
|
task rc:x calendar
|
|
echo '$ task burndown.daily'
|
|
task rc:x burndown.daily
|
|
done
|