aboutsummaryrefslogtreecommitdiff
path: root/task
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-08-20 20:42:35 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-08-20 20:42:35 -0300
commit3c5c672e47737e6b3342dfeb730ccd8320f2d442 (patch)
treed08d27539f244e640cf1e92ed0f259929fdf5d32 /task
downloadutils-organization-3c5c672e47737e6b3342dfeb730ccd8320f2d442.tar.gz
utils-organization-3c5c672e47737e6b3342dfeb730ccd8320f2d442.tar.bz2
Initial import
Diffstat (limited to 'task')
-rwxr-xr-xtask14
1 files changed, 14 insertions, 0 deletions
diff --git a/task b/task
new file mode 100755
index 0000000..60b116e
--- /dev/null
+++ b/task
@@ -0,0 +1,14 @@
+#!/bin/bash
+#
+# A very simple taskwarrior wrapper.
+#
+
+# Parameters
+TASK="/usr/bin/task"
+
+# Dispatch
+if [ -e ".task" ]; then
+ $TASK rc.data.location=.task "${@}"
+else
+ $TASK "${@}"
+fi