18 lines
543 B
Python
18 lines
543 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
import os
|
|
import importlib.util
|
|
_base_path = os.path.join(os.path.dirname(__file__), 'adjustment_base.py')
|
|
_spec = importlib.util.spec_from_file_location("adjustment_base", _base_path)
|
|
_module = importlib.util.module_from_spec(_spec)
|
|
_spec.loader.exec_module(_module)
|
|
AdjustmentCommand = _module.AdjustmentCommand
|
|
|
|
class command(AdjustmentCommand):
|
|
def __init__(self):
|
|
super().__init__('alsa', 'volume', 'inc')
|