]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

misc configuration changes
authormartin f. krafft <madduck@madduck.net>
Wed, 30 Jan 2019 23:32:49 +0000 (12:32 +1300)
committermartin f. krafft <madduck@madduck.net>
Thu, 31 Jan 2019 01:54:29 +0000 (14:54 +1300)
.config/taskwarrior/rc
.crontab.d/taskwarrior
.zsh/zshrc/parts.d/50-taskwarrior

index 0d33a2223ffcd1a0429328817ddab3a0eeb0f29d..00037034cc39b80fbb4ddfcf98eb3c25bf28c134 100644 (file)
@@ -2,7 +2,12 @@ include /usr/share/taskwarrior/light-256.theme
 data.location=~/.var/taskwarrior
 
 nag=
-recurrence.indicator=⟳
+recurrence.indicator=@
+recurrence=off
+hyphenate=off
+
+color.tag.TEMPLATE=gray16 on white
+color.alternate=
 
 include /usr/share/taskwarrior/holidays.de-DE.rc
 include /usr/share/taskwarrior/holidays.en-NZ.rc
index b86493bc451e01bacc369d0bd72cf6023e428714..d26dae743061d1f33bda73da54e52e24648989f9 100644 (file)
@@ -1 +1 @@
-*/30 * * * * task sync >/dev/null 2>&1
+*/30 * * * * ( task sync && task next && task sync ) >/dev/null 2>&1
index 9138c2b0d858b3589721864ff8c7d2f730226531..346df9030cd60bc5991563ef91198503ba0a1d92 100644 (file)
@@ -9,8 +9,9 @@
 
 if whence task >/dev/null; then
 
-  alias t=task
-  alias t\?='alias -rm t t[a-z]'
+  function t() { task "$@"; }
+
+  alias t\?='alias -rm t[-+a-z]'
   alias ta='t add'
   alias tc='t call'
   alias th='t attach'
@@ -19,8 +20,10 @@ if whence task >/dev/null; then
   alias ty='t sync'
   alias td='t done'
   alias te='t edit'
+  alias tu='t undo'
   alias tm='t modify'
   alias ts='t start'
+  alias t+='t annotate'
 
   run_at_most_every 30s \
     task 2>/dev/null || :