summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
authorYigit Sever2021-10-08 00:53:32 +0300
committerYigit Sever2021-10-08 00:53:32 +0300
commit0133239ebe4a8ccb1ab772a2f8fbfdf62409e825 (patch)
tree844206b869694e3754d793a0cf0de7cf6ccdb140 /.local
parent37b1bb345883939fcdad3c32d9e47050f5dc6c85 (diff)
downloaddotfiles-0133239ebe4a8ccb1ab772a2f8fbfdf62409e825.tar.gz
dotfiles-0133239ebe4a8ccb1ab772a2f8fbfdf62409e825.tar.bz2
dotfiles-0133239ebe4a8ccb1ab772a2f8fbfdf62409e825.zip
bin: move td to remind
diffstat (limited to '.local')
-rwxr-xr-x.local/bin/td11
1 files changed, 6 insertions, 5 deletions
diff --git a/.local/bin/td b/.local/bin/td
index 3de0d55..f15c0c6 100755
--- a/.local/bin/td
+++ b/.local/bin/td
@@ -3,23 +3,24 @@
3task_date=$(zenity --calendar --date-format=%Y-%m-%d) 3task_date=$(zenity --calendar --date-format=%Y-%m-%d)
4 4
5if [[ $? -ne 0 ]]; then 5if [[ $? -ne 0 ]]; then
6 notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" 6 notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error"
7 exit 0 7 exit 0
8fi 8fi
9 9
10task_time=$(zenity --entry --text="enter time in xx:xx format" --entry-text="00:00") 10task_time=$(zenity --entry --text="enter time in xx:xx format" --entry-text="00:00")
11 11
12if [[ $? -ne 0 ]]; then 12if [[ $? -ne 0 ]]; then
13 notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" 13 notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error"
14 exit 0 14 exit 0
15fi 15fi
16 16
17task_description=$(zenity --entry --text="enter description") 17task_description=$(zenity --entry --text="enter description")
18 18
19if [[ $? -ne 0 ]]; then 19if [[ $? -ne 0 ]]; then
20 notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" 20 notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error"
21 exit 0 21 exit 0
22fi 22fi
23 23
24RESULT=$(task add due:${task_date}T$task_time "$task_description") 24echo REM "${task_date}" AT "${task_time}" +45 *15 MSG %\""${task_description}"%\" %c% >> "${HOME}/nextcloud/remind/050-events.rem"
25notify-send "Success" "$RESULT" --app-name="taskwarrior" --icon="checkmark" 25
26notify-send "notification set!" "${task_date} at ${task_time}" --app-name="remind" --icon="checkmark"