Small change after taskwarrior upgrade to 2.6.0

This commit is contained in:
gardouille 2021-10-06 10:13:41 +02:00
parent caf21204e8
commit fad526e2ca
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ black="#000000"
blue="#0094cc"
# Display pending tasks list and get title from the choosen one
TITLE=$(task export status:pending | jq -r 'sort_by( -.urgency )[] | [ (.id|tostring), .description ] | join(" ")' |
TITLE=$(task status:pending export | jq -r 'sort_by( -.urgency )[] | [ (.id|tostring), .description ] | join(" ")' |
rofi -location 2 -no-auto-select -i -dmenu -p "Task" -color-enabled -color-normal "${black},${blue},${black},${blue},${black}" -color-window "${black},${black}" |
cut --delimiter=" " --field=2)