#!/bin/ksh -p
# background creator
# Fuss-less background bitmap displayer. Options as "xv".

if (( $# != 0 )) then
  /opt/computing/bin/xv -root -owncmap -quit $@
else
  echo "Usage: $( basename $0 ) filename"
fi
