Skip to content
New issue

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

Works in interactive shell, not via script #36

Open
IceBearZero opened this issue Jan 2, 2020 · 0 comments
Open

Works in interactive shell, not via script #36

IceBearZero opened this issue Jan 2, 2020 · 0 comments

Comments

@IceBearZero
Copy link

Same code works in an interactive shell, but not sudo python keypress.py start
no errors, just not expected beahviour

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant