9 lines
198 B
Python
9 lines
198 B
Python
from .pulseaudio import Module
|
|
|
|
|
|
class Module(Module):
|
|
def __init__(self, config, theme):
|
|
super().__init__(config, theme, "sink")
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|