summaryrefslogtreecommitdiffstats
path: root/.local/bin/done
diff options
context:
space:
mode:
authorYigit Sever2021-11-07 23:42:15 +0300
committerYigit Sever2021-11-07 23:42:15 +0300
commit9fa9973c2d2f91cef7bdd26cb52064c13f4d682e (patch)
tree13aa64b09bc91e16f3dd3217bf3d647559af2cf9 /.local/bin/done
parent9382166b5522a5d9e2d62e93e702b4d0886cedb4 (diff)
parentfcb2237c01bcd2b7982bb844cea4cf9447f20d03 (diff)
downloaddotfiles-9fa9973c2d2f91cef7bdd26cb52064c13f4d682e.tar.gz
dotfiles-9fa9973c2d2f91cef7bdd26cb52064c13f4d682e.tar.bz2
dotfiles-9fa9973c2d2f91cef7bdd26cb52064c13f4d682e.zip
Merge remote-tracking branch 'origin/main'
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