diff options
author | Yigit Sever | 2023-12-26 17:17:50 +0300 |
---|---|---|
committer | Yigit Sever | 2023-12-26 17:17:50 +0300 |
commit | 2f50fd963d515d52301b615bf26ffe4de05032af (patch) | |
tree | 671a95a24955eb854f1aa1aa7e707790268298e1 /.local/bin/td | |
parent | b5b98ee9d410a1ab44c4a52655a21e88d1cb7a06 (diff) | |
download | dotfiles-2f50fd963d515d52301b615bf26ffe4de05032af.tar.gz dotfiles-2f50fd963d515d52301b615bf26ffe4de05032af.tar.bz2 dotfiles-2f50fd963d515d52301b615bf26ffe4de05032af.zip |
td: switch to yad
Diffstat (limited to '.local/bin/td')
-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" |