summaryrefslogtreecommitdiffstats
path: root/.local/bin/done
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/done')
-rwxr-xr-x.local/bin/done4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/done b/.local/bin/done
index 8bb0a3d..ae76287 100755
--- a/.local/bin/done
+++ b/.local/bin/done
@@ -27,9 +27,9 @@ if ACTIVE_TASK=$(task active); then
27 timew "@1" annotate "${annot:0:1}" 27 timew "@1" annotate "${annot:0:1}"
28 else 28 else
29 if maybe_delete=$(printf "no no\nyea" | rofi -dmenu -p "should we delete the tracking?" -lines 2 -no-custom); then 29 if maybe_delete=$(printf "no no\nyea" | rofi -dmenu -p "should we delete the tracking?" -lines 2 -no-custom); then
30 if [[ "${maybe_delete}" == "no no" ]]; then 30 if [[ ${maybe_delete} == "no no" ]]; then
31 notify-send "tracking unannotated, not deleted" "nobody will know how that went" --app-name="done" --icon="itmages-question" 31 notify-send "tracking unannotated, not deleted" "nobody will know how that went" --app-name="done" --icon="itmages-question"
32 elif [[ "${maybe_delete}" == "yea" ]]; then 32 elif [[ ${maybe_delete} == "yea" ]]; then
33 timew delete "@1" 33 timew delete "@1"
34 notify-send "tracking deleted" "like you never worked on that" --app-name="done" --icon="pack-more" 34 notify-send "tracking deleted" "like you never worked on that" --app-name="done" --icon="pack-more"
35 fi 35 fi