We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Same code works in an interactive shell, but not sudo python keypress.py start no errors, just not expected beahviour
sudo python keypress.py start
import uinput import sys arg = sys.argv[1] if arg == 'start': print('ENTER press') device = uinput.Device([uinput.KEY_ENTER]); device.emit(uinput.KEY_ENTER, 1) elif arg == 'select': print('SELECT press') elif arg == 'exit': print('SHIFT/ESCAPE press') device = uinput.Device([uinput.KEY_LEFTSHIFT, uinput.KEY_ESC]); device.emit(uinput.KEY_LEFTSHIFT, 1); device.emit(uinput.KEY_ESC, 1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Same code works in an interactive shell, but not
sudo python keypress.py start
no errors, just not expected beahviour
The text was updated successfully, but these errors were encountered: