15 lines
288 B
Bash
Executable file
15 lines
288 B
Bash
Executable file
#!/bin/sh
|
|
# from https://www.reddit.com/r/taskwarrior/comments/4mwhvk/a_script_to_autosync_after_every_modification/
|
|
|
|
# Count the number of tasks modified
|
|
n=0
|
|
while read modified_task
|
|
do
|
|
n=$(($n + 1))
|
|
done
|
|
|
|
if (($n > 0)); then
|
|
task sync >> ~/.config/task/sync_hook.log
|
|
fi
|
|
|
|
exit 0
|