diff options
-rwxr-xr-x | .local/bin/td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/td b/.local/bin/td index 5330644..695f351 100755 --- a/.local/bin/td +++ b/.local/bin/td | |||
@@ -1,20 +1,20 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | task_date=$(zenity --calendar --date-format=%Y-%m-%d) | 3 | task_date=$(yad --calendar --date-format=%Y-%m-%d) |
4 | 4 | ||
5 | if [[ $? -ne 0 ]]; then | 5 | if [[ $? -ne 0 ]]; then |
6 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" | 6 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" |
7 | exit 0 | 7 | exit 0 |
8 | fi | 8 | fi |
9 | 9 | ||
10 | task_time=$(zenity --entry --text="enter time in xx:xx format" --entry-text="00:00") | 10 | task_time=$(yad --entry --text="enter time in xx:xx format" --entry-text="00:00") |
11 | 11 | ||
12 | if [[ $? -ne 0 ]]; then | 12 | if [[ $? -ne 0 ]]; then |
13 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" | 13 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" |
14 | exit 0 | 14 | exit 0 |
15 | fi | 15 | fi |
16 | 16 | ||
17 | task_description=$(zenity --entry --text="enter description") | 17 | task_description=$(yad --entry --text="enter description") |
18 | 18 | ||
19 | if [[ $? -ne 0 ]]; then | 19 | if [[ $? -ne 0 ]]; then |
20 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" | 20 | notify-send "Cancelling..." "" --app-name="remind" --icon="dialog error" |