diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-28 10:49:41 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-28 10:49:41 +0300 |
| commit | 40b458ff1ae4d5fc9163950df87a33e52c3018b0 (patch) | |
| tree | cc4dbb9796dc8863012c3175ced5a26f3d11e198 | |
| parent | 54fe79f9f1f9e86a7b365516f09962114b2066d7 (diff) | |
Update
| -rw-r--r-- | dotfiles/scripts/taskwarriorfeeder.rb | 2 |
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 |
