diff options
Diffstat (limited to '.local/bin/td')
-rwxr-xr-x | .local/bin/td | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.local/bin/td b/.local/bin/td new file mode 100755 index 0000000..3de0d55 --- /dev/null +++ b/.local/bin/td | |||
@@ -0,0 +1,25 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | task_date=$(zenity --calendar --date-format=%Y-%m-%d) | ||
4 | |||
5 | if [[ $? -ne 0 ]]; then | ||
6 | notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" | ||
7 | exit 0 | ||
8 | fi | ||
9 | |||
10 | task_time=$(zenity --entry --text="enter time in xx:xx format" --entry-text="00:00") | ||
11 | |||
12 | if [[ $? -ne 0 ]]; then | ||
13 | notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" | ||
14 | exit 0 | ||
15 | fi | ||
16 | |||
17 | task_description=$(zenity --entry --text="enter description") | ||
18 | |||
19 | if [[ $? -ne 0 ]]; then | ||
20 | notify-send "Cancelling..." "" --app-name="task todo" --icon="dialog error" | ||
21 | exit 0 | ||
22 | fi | ||
23 | |||
24 | RESULT=$(task add due:${task_date}T$task_time "$task_description") | ||
25 | notify-send "Success" "$RESULT" --app-name="taskwarrior" --icon="checkmark" | ||