From: Silvio Rhatto Date: Sun, 23 May 2021 17:21:17 +0000 (-0300) Subject: Feat: another taskwarrior wrapper X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=260b8fc6339dbc3a7895278e4893198c480739ab;p=scripts.git Feat: another taskwarrior wrapper --- 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