taskwarrior/scripts/hooks/on-launch
Paul Beckingham 11058396c8 Hooks
- Cleaned up せxample hooks, with clearer inline documentation.
2014-05-17 11:16:32 -04:00

21 lines
540 B
Bash
Executable file

#!/bin/bash
# The on-launch event is triggered once, after initialization, before an
# processing occurs
# No input
# Processing goes here
# Output:
# - all emitted JSON lines must be fully-formed tasks
# - all emitted non-JSON lines are considered feedback messages
echo on-launch
# Exit:
# 0 Means: - all emitted JSON lines are added/modifiied
# - all emitted non-JSON lines become footnote entries
# 1 Means: - all emitted JSON lines are ignored
# - all emitted non-JSON lines become error entries
exit 0