diff --git a/rofi-task.sh b/rofi-task.sh index b8ff5a7..830f35e 100755 --- a/rofi-task.sh +++ b/rofi-task.sh @@ -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)