
this is an x gesture program, inspired by all-in-one-gestures for firefox.

by clicking a mouse button (while possibly pressing a modifyer) and 
performing a movement sequence (composed of Up, Down, Left and Right) you 
can perform various actions around your desktop.

currently, only the following actions are supported:
1) minimize	- minimize the window on which the gesture started.
2) exit 	- exit the xgesture program.
3) execute	- execute an arbitrary command
4) kill		- kill the window on which the gesture started.
5) display_gests	- display the currently configured gestures.
6) reconf	- reread the configuration file
7) lower        - lower the current window
8) raise        - raise the current window
9) maximize     - maximize the current window
10) root_send	- send a key press to the X server. multiple modifiers can be specified.
		  keysyms are according to X11/keysymdef.h (without the "XK_" prefix).
		  to send a capita "a", add a rule like:
		  LD root_send Shift_L+A

Config File:
------------

the configuration file (default: ~/.gestures) is composed of a gesture
sequence (e.g., ULD), an action and optional arguments.
for example, to execute "xterm" with an upwards gesture:

U exec xterm

to minimize a window with a downwards gesture:
D minimize 
