From 760453e202e30c0c2ccaf81cf20c83d666f34371 Mon Sep 17 00:00:00 2001 From: chrys Date: Thu, 17 May 2018 22:10:20 +0200 Subject: [PATCH] add plug sound --- .../onPlugInputDevice/80000-plugSound.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 src/fenrirscreenreader/commands/onPlugInputDevice/80000-plugSound.py diff --git a/src/fenrirscreenreader/commands/onPlugInputDevice/80000-plugSound.py b/src/fenrirscreenreader/commands/onPlugInputDevice/80000-plugSound.py new file mode 100755 index 00000000..34a6dac0 --- /dev/null +++ b/src/fenrirscreenreader/commands/onPlugInputDevice/80000-plugSound.py @@ -0,0 +1,25 @@ +#!/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