#!/bin/sh
# This waits 5 seconds, time enough to switch to a different desktop,
# and then it fires up four xterms in the four corners of the screen,
# with different foreground colors.  The  coordinates  will  probably
# need to change with different window managers. This bunch is set up
# for:
#   KDE with 50-pixel-high task bar

echo 5; sleep 1
echo 4; sleep 1
echo 3; sleep 1
echo 2; sleep 1
echo 1; sleep 1

xterm -cm -sl 1000 -sb -g 90x40+12+0  -cr red -bg grey30 -fg white &
sleep 1
xterm -cm -sl 1000 -sb -g 90x40-0+0   -cr red -bg grey30 -fg yellow &
sleep 1
xterm -cm -sl 1000 -sb -g 90x40+12-30 -cr red -bg grey30 -fg green &
sleep 1
xterm -cm -sl 1000 -sb -g 90x40-0-30  -cr red -bg grey30 -fg cyan &
