summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-28 10:49:41 +0300
committerPaul Buetow <paul@buetow.org>2025-06-28 10:49:41 +0300
commit40b458ff1ae4d5fc9163950df87a33e52c3018b0 (patch)
treecc4dbb9796dc8863012c3175ced5a26f3d11e198
parent54fe79f9f1f9e86a7b365516f09962114b2066d7 (diff)
Update
-rw-r--r--dotfiles/scripts/taskwarriorfeeder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/scripts/taskwarriorfeeder.rb b/dotfiles/scripts/taskwarriorfeeder.rb
index 4acd2b6..38e32db 100644
--- a/dotfiles/scripts/taskwarriorfeeder.rb
+++ b/dotfiles/scripts/taskwarriorfeeder.rb
@@ -119,7 +119,7 @@ def task_add!(tags, quote, due, dry)
if tags.include?('task')
run! "task #{quote}", dry
else
- priority = tags.include?('high') ? 'H' : 'L'
+ priority = tags.include?('high') ? 'H' : ''
run! "task add due:#{due} priority:#{priority} +#{tags.join(' +')} '#{quote.gsub("'", '"')}'", dry
end
end