summaryrefslogtreecommitdiff
path: root/help/C/l10n_scripts/calendar.sh
diff options
context:
space:
mode:
Diffstat (limited to 'help/C/l10n_scripts/calendar.sh')
-rwxr-xr-xhelp/C/l10n_scripts/calendar.sh10
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 0000000..cf0f45e
--- /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
+