123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- device:
- # name as found in `xinput list` (without Pen/Pad/Finger)
- # Example: Wacom Intuos5 touch M
- name: Wacom Intuos5 touch M
-
- # usbid, as found in `lsusb`
- # Example: 056a:0027
- usbid: 056a:0027
-
- default_profile: default
- profile_file: ~/.config/fynncom/last_profile
-
- mappings:
- # profile named default
- default:
- # all Wacom devices with "pen" in the name
- pen:
- # make pen absolute to this screen (can be found with xrandr)
- maptooutput: 1920x1200+1920+0
-
- # all Wacom devices with pad in name (usually just one)
- pad:
- # upper four buttons
- 2: '1'
- 3: '2'
- 8: '3'
- 9: '4'
-
- # wheel + button
- # to get the wheel to work, this should be a shortcut for your
- # window manager launching fynncom to refresh the mappings
- 1: 'key ctrl alt shift c' # middle
- # This setting will be overwritten by the wheel config lower
- AbsWheelDown: '5'
- AbsWheelUp: '7'
-
- # lower four buttons
- 10: '8'
- 11: '9'
- 12: '0'
- 13: 'A'
-
- # this configuration is applied depending upon the tablet's wheel state
- wheel:
- - pad:
- AbsWheelUp: 'B'
- AbsWheelDown: 'C'
- - pad:
- AbsWheelUp: 'D'
- AbsWheelDown: 'E'
- - pad:
- AbsWheelUp: 'F'
- AbsWheelDown: 'G'
- - pad:
- AbsWheelUp: 'H'
- AbsWheelDown: 'I'
-
- # profile named gimp inheriting from default
- gimp:
- base_profile: 'default'
|