Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 9a26ee7abed05cda7d0d61634b345519 > files > 118

Xdialog-2.3.1-6.mga5.x86_64.rpm

#!/bin/sh

USERTIME=`Xdialog --stdout --title "TIMEBOX" --timebox "Please set the time..." 0 0`

case $? in
  0)
    echo "Time entered: $USERTIME.";;
  1)
    echo "Cancel pressed.";;
  255)
    echo "Box closed.";;
esac