32 lines
948 B
Python
32 lines
948 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
from fenrirscreenreader.core import debug
|
|
import math
|
|
|
|
class command():
|
|
def __init__(self):
|
|
pass
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
def shutdown(self):
|
|
pass
|
|
def getDescription(self):
|
|
return _('Decreases the volume of the speech')
|
|
|
|
def run(self):
|
|
value = self.env['runtime']['settingsManager'].getSettingAsFloat('speech', 'volume')
|
|
value = round((math.ceil(10 * value) / 10) - 0.1, 2)
|
|
if value < 0.1:
|
|
value = 0.1
|
|
self.env['runtime']['settingsManager'].setSetting('speech', 'volume', str(value))
|
|
|
|
self.env['runtime']['outputManager'].presentText(_("{0} percent speech volume").format(int(value * 100)), soundIcon='', interrupt=True)
|
|
|
|
def setCallback(self, callback):
|
|
pass
|
|
|