From bfcf7fb83dac3499d5374964422e55653a8e8111 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Wed, 6 Oct 2021 17:52:38 +0200 Subject: [PATCH] Add possibility to stop current active task --- rofi-task.sh | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/rofi-task.sh b/rofi-task.sh index 6cb32db..c6bab23 100755 --- a/rofi-task.sh +++ b/rofi-task.sh @@ -3,9 +3,14 @@ # From Kehet ## https://gist.github.com/Kehet/5ba8a530e52ea3a0ae251d756faef680 -# Rofi colors +# Vars {{{ +## Current tasks temp file +readonly TASKW_CURRENT_LIST="/tmp/rofi-task.sh-current.tasks" + +## Rofi colors black="#000000" blue="#0094cc" +# }}} is_task_running() { # {{{ @@ -20,11 +25,23 @@ is_task_running() { # {{{ # }}} display_current_task() { # {{{ + ## List active task(s) in a temp file + touch -- "${TASKW_CURRENT_LIST}" + printf '%b\n\n' " Choose a task to STOP" >> "${TASKW_CURRENT_LIST}" + task +ACTIVE export | jq -r 'sort_by( -.urgency )[] | [ (.id|tostring), .description ] | join(" ")' >> "${TASKW_CURRENT_LIST}" + ## Display active tasks list and get title from the choosen one - TITLE=$(task +ACTIVE export | jq -r 'sort_by( -.urgency )[] | [ (.id|tostring), .description ] | join(" ")' | - rofi -location 2 -lines 3 -no-auto-select -i -dmenu -p "RUNNING task(s)" -color-enabled -color-normal "${blue},${black},${blue},${black},${blue}" -color-window "${blue},${blue}" | + TITLE=$(rofi -location 2 -lines 5 -no-auto-select -i -dmenu -p "RUNNING task(s)" -color-enabled -color-normal "${blue},${black},${blue},${black},${blue}" -color-window "${blue},${blue}" < "${TASKW_CURRENT_LIST}" | cut --delimiter=" " --field=2) + ## Remove temp file + rm --force -- "${TASKW_CURRENT_LIST}" + + ## If no task was selected (empty var) then exit + [ -z "${TITLE}" ] && echo "Cancelled." && exit 0 + + ## Stop the selected task and exit + task "${TITLE}" stop >/dev/null && exit 0 } # }}} select_task() { # {{{