try remove sound for virtual devices

This commit is contained in:
Chrys
2019-08-24 18:26:40 +02:00
parent 55e9f9e4b4
commit 0e8ebc43b4
5 changed files with 59 additions and 58 deletions

View File

@ -1,22 +0,0 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getDescription(self):
return 'No description found'
def run(self):
pass
#self.env['runtime']['inputManager'].updateInputDevices()
def setCallback(self, callback):
pass

View File

@ -1,25 +0,0 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
import time
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
self.lastTime = time.time()
def shutdown(self):
pass
def getDescription(self):
return 'No description found'
def run(self):
if time.time() - self.lastTime > 2:
self.env['runtime']['outputManager'].playSoundIcon(soundIcon = 'accept', interrupt=True)
lastTime = time.time()
def setCallback(self, callback):
pass

View File

@ -0,0 +1,35 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
import time
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
self.lastTime = time.time()
self.tempDisable = False
def shutdown(self):
pass
def getDescription(self):
return 'No description found'
def run(self):
if time.time() - self.lastTime > 5:
if not self.isTempDisable():
self.env['runtime']['outputManager'].playSoundIcon(soundIcon = 'accept', interrupt=True)
else:
self.resetTempDisable()
lastTime = time.time()
def setCallback(self, callback):
pass
def setTempDisable(self):
self.tempDisable = True
def resetTempDisable(self):
self.tempDisable = False
def isTempDisable(self):
return self.tempDisable