sb-task: new script
This commit is contained in:
parent
e346b923ab
commit
280b1691c2
1 changed files with 26 additions and 0 deletions
26
common/.local/libexec/statusbar/sb-task
Executable file
26
common/.local/libexec/statusbar/sb-task
Executable 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)"
|
Loading…
Add table
Reference in a new issue