zenity/scripts/calendar.sh

9 lines
187 B
Bash
Raw Permalink Normal View History

2022-04-07 07:50:20 -04:00
#!/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