even more bits

This commit is contained in:
chrys
2019-02-04 21:56:36 +01:00
parent 6c5251b69b
commit 70fc93f311
4 changed files with 32 additions and 3 deletions

View File

@ -78,6 +78,7 @@ class inputManager():
if key.upper() == 'SLEEP':
time.sleep(value)
else:
print(key,value)
self.env['runtime']['inputDriver'].sendKey(key, value)
def handleInputEvent(self, eventData):
#print(eventData)

View File

@ -17,9 +17,9 @@ class vmenuManager():
self.currIndex = None
self.currMenu = ''
self.active = False
self.defaultVMenuPath = fenrirPath+ "/commands/vmenu-profiles/KEY"
def initialize(self, environment):
self.env = environment
self.defaultVMenuPath = fenrirPath+ "/commands/vmenu-profiles/" + self.env['runtime']['inputManager'].getShortcutType()
def shutdown(self):
pass
def setCurrMenu(self, currMenu = ''):
@ -82,7 +82,8 @@ class vmenuManager():
command = self.getValueByPath(self.menuDict, self.currIndex)
if not command == None:
command.run()
except:
except Exception as e:
print(e)
self.incLevel()
def incLevel(self):
if self.currIndex == None: