#!/bin/sh
# This waits 5 seconds, time enough to switch to a different desktop,
# and then it fires up four xrands 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 30-pixel-high task bar

#sleep 5

xrand -cm -sl 1000 -sb -g 90x40+5+0  -cr red & sleep 1
xrand -cm -sl 1000 -sb -g 90x40-0+0  -cr red & sleep 1
xrand -cm -sl 1000 -sb -g 90x40+5-30 -cr red & sleep 1
xrand -cm -sl 1000 -sb -g 90x40-0-30 -cr red &
