Created
October 1, 2013 07:04
-
-
Save mjota/6774799 to your computer and use it in GitHub Desktop.
Multitouch on touchpad.
/etc/ginn/wishes.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ginn> | |
| <global> | |
| <!-- Application control --> | |
| <wish gesture="Drag" fingers="2"> | |
| <action name="action5" when="update"> | |
| <trigger prop="delta y" min="20" max="80"/> | |
| <key>Down</key> | |
| </action> | |
| </wish> | |
| <wish gesture="Drag" fingers="2"> | |
| <action name="action6" when="update"> | |
| <trigger prop="delta y" min="-80" max="-20"/> | |
| <key>Up</key> | |
| </action> | |
| </wish> | |
| <!-- System wide - control desktop --> | |
| <wish gesture="Tap" fingers="3"> | |
| <action name="Click_Central" when="update"> | |
| <trigger prop="tap time" min="20" max="400"/> | |
| <button>2</button> | |
| </action> | |
| </wish> | |
| <wish gesture="Drag" fingers="3"> | |
| <action name="Expose" when="update"> | |
| <trigger prop="delta y" min="20" max="600"/> | |
| <key modifier1="Super_L">W</key> | |
| </action> | |
| </wish> | |
| <wish gesture="Tap" fingers="4"> | |
| <action name="Slingshot" when="update"> | |
| <trigger prop="tap time" min="20" max="400"/> | |
| <key modifier1="Control_L">p</key> | |
| </action> | |
| </wish> | |
| <wish gesture="Drag" fingers="3"> | |
| <action name="Maximizar" when="update"> | |
| <trigger prop="delta y" min="-600" max="-20"/> | |
| <key modifier1="Super_L">Down</key> | |
| </action> | |
| </wish> | |
| </global> | |
| <applications> | |
| </applications> | |
| </ginn> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment