Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elv13/wacky
Wacom tablet support for AwesomeWM
https://github.com/elv13/wacky
awesomewm
Last synced: 5 days ago
JSON representation
Wacom tablet support for AwesomeWM
- Host: GitHub
- URL: https://github.com/elv13/wacky
- Owner: Elv13
- Created: 2014-04-23T02:09:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-23T02:11:45.000Z (over 10 years ago)
- Last Synced: 2024-10-30T20:48:41.594Z (about 2 months ago)
- Topics: awesomewm
- Language: Lua
- Size: 109 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Wacky: Wacom tablet support for AwesomeWM
=====This module add 2 functions to Awesome to set the Wacom rectangle.
### wacky.focussed_client
Set the rect around the focussed client geometry### wacky.select_rect
Draw a red rectangle on the screenIn both case, it take an array of device id (use xsetwacom --list to get them)
Add this to rc.lua:
````
awful.key({ modkey, }, "w", function() wacky.select_rect(10) end),
awful.key({ modkey, "Shift" }, "w", function() wacky.focussed_client(10) end),````