1
0
Fork 0

sb-task: new script

This commit is contained in:
Luca Bilke 2024-10-09 15:22:25 +02:00
parent e346b923ab
commit 280b1691c2

View file

@ -0,0 +1,26 @@
#!/bin/sh
. libsb
icon=󰄵
get_context() {
task context show | awk "NR==1 { gsub(\"'\", \"\"); print \$2 }"
}
get_active() {
num_active=$(task export active | jq length)
[ "$num_active" = 0 ] && {
echo "No active task"
return
}
[ "$num_active" -gt 1 ] && {
echo "$num_active active tasks"
return
}
task export active | jq -r '.[0].description'
}
printf "%s %s: %s\n" "$icon" "$(get_context)" "$(get_active)"