2020-05-06 12:57:38 +02:00
|
|
|
from .pulseaudio import Module
|
2020-02-23 13:45:42 +01:00
|
|
|
|
2020-05-03 11:15:52 +02:00
|
|
|
|
2020-02-23 13:45:42 +01:00
|
|
|
class Module(Module):
|
2020-04-26 16:39:24 +02:00
|
|
|
def __init__(self, config, theme):
|
2020-05-03 11:15:52 +02:00
|
|
|
super().__init__(config, theme, "sink")
|
|
|
|
|
2020-02-23 13:45:42 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|