1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# example.list
#
# Included with the GKrellKam 0.3.0 distribution
# by paul cannon- permission is granted to use, modify, and
# copy this file for any use
# Notes:
#
# - you don't need to put the type prefix (image:, etc) before
# each source, to make this compatible with older GKrellKams, but
# it is recommended for readability.
# - make sure to use a single tab character (\t) to indent
# properties for sources, like tooltip: or seconds:.
# - see gkrellkam-list(5) for more info.
# Show the building where I work
url: http://www.usu.edu/webcam/usucam.jpg
tooltip: This is where paul works!
# Show some pictures of my friends
image: /home/paul/pics/friends.png
tooltip: If you have this on your machine, I'll be surprised...
image: /home/paul/pics/playing.png
image: /home/paul/pics/v.gif
# Still works without the image: prefix..
/home/paul/pics/something.jpg
/home/paul/pics/scannedpic.tif
# Get the next images to display from scripts
script: echo "/home/paul/pics/mypic.xpm"
# okay, it wasn't a very complicated script..
# if I don't put the 'script:' prefix, I need to put the whole path
# so that GKrellKam knows that echo is executable.
/bin/echo "/home/paul/pics/mypic2.ppm"
script: /home/paul/bin/nextimage.pl
# Show a webcam in sunny Hawaii for only 10 seconds (don't want to
# be distracted from work). Also, only re-fetch this image from the
# internet every 10 minutes (600 seconds). If the image cycles up
# before that time, use the previously downloaded version.
http://webcam.its.hawaii.edu/uhmwebcam/image01.jpg
seconds: 10
refresh: 600
tooltip: Hey! Keep working!
# Include the contents of another list right here- tooltips and
# seconds properties are not valid on a list.
list: /home/paul/lists/fiji.list
|