zenity/scripts/calendar.sh
2022-04-07 12:53:18 +01:00

9 lines
187 B
Bash
Executable File

#!/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