mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-07-06 01:36:09 +00:00
5 lines
221 B
Fish
5 lines
221 B
Fish
function push_tasks -d 'Push tasks as a notification to your phone'
|
|
set tasks (task +READY export | jq 'sort_by(.urgency) | reverse | map(@text "\(.description)\nLink: \(.link)") | join("\n\n")')
|
|
send_push $tasks
|
|
end
|