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 / local / bin / agendashell < prev    next >
Encoding:
Text File  |  2004-07-25  |  530 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. #this file must exist for agenda to run...
  4. if [ ! -e /root/.events ];then
  5.  touch /root/.events
  6.  chmod 644 /root/.events
  7. fi
  8.  
  9. xmessage -timeout 120 -bg "#ff00ff" -name "agendashell" -title "Agenda event manager information" -buttons "" "The X server startup script \"/root/.xinitrc\" has an entry in it to
  10. execute the program \"agenda_chk\", which checks the events created
  11. by Agenda and will popup a message window if an event is due. So, 
  12. notification of a due event happens at startup of the X server." &
  13.  
  14. exec agenda
  15.