about summary refs log tree commit diff stats
path: root/pkgs/by-name/ne/neorg/functions/f_stop.sh
blob: e4ff0b9401160ea4b5bfa8feda476221fb163214 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env dash

fstop0stop_current_task() {
    # we ensured that only one task may be active
    active="$(task +ACTIVE _ids)"
    [ "$active" ] && task stop "$active"
}