mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
16 lines
423 B
Bash
Executable file
16 lines
423 B
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
|
|
|
|
exit
|
|
|