commit e84de832d35883b633246e3706cde97c506ca615 Author: Martin Tournoij Date: Wed Sep 9 23:59:43 2015 +0200 Hello, world diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..3e0c914 --- /dev/null +++ b/.hgignore @@ -0,0 +1,2 @@ +find-cursor +capture diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e16c56b --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + cc find-cursor.c -o find-cursor -lX11 diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..934cf81 --- /dev/null +++ b/README.markdown @@ -0,0 +1,7 @@ +Simple XLib program to highlight the cursor position. This is similar to the +feature found in Windows XP (and possibly later?) + +You can compile it by typing `make`. At the top of the file there are some +variables you can tweak if you wish. +You can map it in your WM or with `xbindkeys`. + diff --git a/screenshot.gif b/screenshot.gif new file mode 100644 index 0000000..9d0e4f5 Binary files /dev/null and b/screenshot.gif differ