diff --git a/rootDaemon.py b/hotcutdaemon.py similarity index 75% rename from rootDaemon.py rename to hotcutdaemon.py index 51c17b3..ff79e00 100644 --- a/rootDaemon.py +++ b/hotcutdaemon.py @@ -1,12 +1,11 @@ +#!/usr/bin/python3 from evdev import InputDevice, categorize, ecodes -import configparser +import configparser, os config = configparser.ConfigParser() config.read('config.ini') def sysrun(command): - f=open("lastCommand","w") - f.write(command) - f.close() -dev = InputDevice('/dev/input/by-id/usb-dakai_PS_2+USB_Keyboard-event-kbd') + os.system(command+ " &") +dev = InputDevice(config["DEVICE"]["path"]) dev.grab() for event in dev.read_loop(): if event.type == ecodes.EV_KEY: