Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions spin.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,11 +683,15 @@ def get_inputs():
).communicate()[0]
devices_and_keyphrases = {
"touchscreen": ["SYNAPTICS Synaptics Touch Digitizer V04",
"ELAN Touchscreen"],
"ELAN Touchscreen",
"Wacom Co.,Ltd. Pen and multitouch sensor Finger touch"],
"touchpad": ["PS/2 Synaptics TouchPad",
"SynPS/2 Synaptics TouchPad"],
"nipple": ["TPPS/2 IBM TrackPoint"],
"stylus": ["Wacom ISDv4 EC Pen stylus"]
"SynPS/2 Synaptics TouchPad",
"ETPS/2 Elantech Touchpad"],
"nipple": ["TPPS/2 IBM TrackPoint",
"ETPS/2 Elantech TrackPoint"],
"stylus": ["Wacom ISDv4 EC Pen stylus",
"Wacom Co.,Ltd. Pen and multitouch sensor Pen stylus"]
}
names_devices = {}
for device, keyphrases in devices_and_keyphrases.iteritems():
Expand Down