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
| local curves = {} | |
| local timer = 0 | |
| local iterations = 0 | |
| function newCurve(startX, startY, startDir, lineLen, color) | |
| return { | |
| startX = startX, | |
| startY = startY, | |
| startDir = startDir, | |
| lineLen = lineLen, |
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
| #This is how I got some of the window management gestures working on linux mint with the cinnamon frontend: | |
| #install your stuff | |
| sudo apt-get install xorg-xserver-mtrack xbindkeys xdotool | |
| #fix mtrack conf | |
| sudo mv /usr/share/X11/xorg.conf.d/50-mtrack.conf /usr/share/X11/xorg.conf.d/60-mtrack.conf | |
| #configure xbindkeys | |
| ( |