home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / linux / puppy-barebones-2.01r2.iso / pup_201.sfs / usr / sbin / icewmclockcmd < prev    next >
Encoding:
Text File  |  2005-09-28  |  236 b   |  12 lines

  1. #!/bin/sh
  2. MSG=`which gxmessage` || MSG=xmessage
  3. $MSG -buttons "Calendar:21,xClock:22,Close" -center -title "Time" "`date`"
  4. case $? in
  5.  21) 
  6.     which xcalendar && exec xcalendar
  7.     which ical && exec ical
  8.  ;;
  9.  22) exec xclock ;;
  10. esac
  11.  
  12.