#!/bin/bash

which xsetroot

if [ $? -eq 0 ] 
then
  xsetroot -solid 'SkyBlue4'
else
  /usr/X11R6/bin/xsetroot -solid 'SkyBlue4'
fi

