11-24-2017, 10:51 AM
(11-24-2017, 09:06 AM)rookieone Wrote:(11-23-2017, 08:51 PM)southern.cross Wrote: Has anyone gotten this script to work in the Armbian OS for Pinebook? I get the following errors when I try to use it:
Code:Traceback (most recent call last):
File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner
self.run()
File "/usr/lib/python3.5/threading.py", line 862, in run
self._target(*self._args, **self._kwargs)
File "touchpadsleep.py", line 312, in timeoutThread
device_number = self.findXInputDeviceNumber()
File "touchpadsleep.py", line 303, in findXInputDeviceNumber
res = subprocess.run(["/usr/bin/xinput", "list"], stdout=subprocess.PIPE).stdout
File "/usr/lib/python3.5/subprocess.py", line 693, in run
with Popen(*popenargs, **kwargs) as process:
File "/usr/lib/python3.5/subprocess.py", line 947, in __init__
restore_signals, start_new_session)
File "/usr/lib/python3.5/subprocess.py", line 1551, in _execute_child
raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin/xinput'
Looks like xinput is not installed:
https://packages.ubuntu.com/search?keywo...ection=all
After a:
sudo apt-get install xinput
it ill probaby work? (works on my pinebook, Armbian 5.34)
@rookieone
That's all it was...
<sheepish grin>
Thanks.