notes/My Mouse Location-rv5nN9vq.sh
#!/bin/bash

#Author: Kris Occhipinti (A.K.A. Metalx1000)

#Description: Gets your mouse location and echos "top left" when the cursor is moved to the top left of the screen.
#April. 2010
#http://www.BASHscripts.info
#GPL v3


while [ 1 ];
do
	m=`xdotool getmouselocation|sed 's/x:\(.*\) y:\(.*\) screen:.*/\1, \2/'`
	if [ "$m" = "0, 0" ];
	then
		echo "top left"
	fi
done

syntax highlighted by Code2HTML, v. 0.9.1