diff options
Diffstat (limited to 'bin/td')
-rwxr-xr-x | bin/td | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ | |||
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 | task add due:"$task_date" + "T$task_time" "$task_description" | ||