taskwarrior/doc/misc/themes/run.solar.dark
Paul Beckingham c8e013ca31 Theme Samples
- Updated scripts for generating theme swatches.
2015-01-01 14:45:08 -05:00

26 lines
506 B
Bash
Executable file

#!/bin/bash
for theme in $PWD/../../rc/solarized-dark-256.theme
do
cat <<EOF >x
data.location=.
confirmation=off
detection=off
_forcecolor=on
default.height=24
verbose=off
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