Fixed relative path problem
This commit is contained in:
parent
c6ad364f41
commit
a4cdf43686
|
@ -2,7 +2,7 @@
|
||||||
from evdev import InputDevice, categorize, ecodes
|
from evdev import InputDevice, categorize, ecodes
|
||||||
import configparser, os
|
import configparser, os
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read('config.ini')
|
config.read(os.path.dirname(os.path.realpath(__file__))+'/config.ini')
|
||||||
def sysrun(command):
|
def sysrun(command):
|
||||||
os.system(command+ " &")
|
os.system(command+ " &")
|
||||||
dev = InputDevice(config["DEVICE"]["path"])
|
dev = InputDevice(config["DEVICE"]["path"])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user