
His name is Ido Stepniewski, born 30 June 2005
Congratulations, and thank you for honoring the whole Twisted project by decorating your new child thusly.
(I just have to say it: doesn't this remind anyone of a certain comic?)
"Note that if I can get you to 'su and say' something just by asking, you have a very serious security problem on your system and you should look into it."
- Paul Vixie, in the vixie-cron 3.0.1 installation notes
#!/usr/bin/python2.4
import os
def findtablet():
data = file('/proc/bus/input/devices').read().split("\n\n")
for d in data:
if 'Wacom' in d:
lines = d.split("\n")
for line in lines:
pdata = line.split('Handlers=')
if len(pdata) == 2:
for pdev in pdata[1].split():
if pdev.startswith('event'):
return '/dev/input/'+pdev
device = findtablet()
os.symlink(device, '/dev/wacom')
print 'Tablet present at /dev/wacom =>', device
xorg.conf
Section "InputDevice"
Identifier "stylus" # Wacom Graphics Tablet
Driver "wacom"
Option "Type" "stylus"
Option "Device" "/dev/wacom"
EndSection