diff options
Diffstat (limited to 'help/C/l10n_scripts/calendar.sh')
-rwxr-xr-x | help/C/l10n_scripts/calendar.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/help/C/l10n_scripts/calendar.sh b/help/C/l10n_scripts/calendar.sh new file mode 100755 index 00000000..cf0f45e3 --- /dev/null +++ b/help/C/l10n_scripts/calendar.sh @@ -0,0 +1,10 @@ +#!/bin/sh + + if zenity --calendar \ + --title="Select a Date" \ + --text="Click on a date to select that date." \ + --day=10 --month=8 --year=2004 + then echo $? + else echo "No date selected" + fi + |