2016-12-11 08:51:56 +01:00
# pylint: disable=C0111,R0903
2018-02-14 12:09:11 +01:00
""" Displays volume and mute status and controls for PulseAudio devices. Use wheel up and down to change volume, left click mutes, right click opens pavucontrol.
2016-12-11 08:51:56 +01:00
2018-02-14 12:09:11 +01:00
Aliases : pasink ( use this to control output instead of input ) , pasource
2017-01-05 04:55:14 +01:00
2017-06-15 11:09:00 +02:00
Parameters :
2017-06-15 14:14:16 +02:00
* pulseaudio . autostart : If set to " true " ( default is " false " ) , automatically starts the pulseaudio daemon if it is not running
2017-06-15 11:09:00 +02:00
2017-01-05 04:55:14 +01:00
Requires the following executable :
2018-02-14 12:09:11 +01:00
* pulseaudio
2017-01-05 04:55:14 +01:00
* pactl
2018-02-14 12:09:11 +01:00
* pavucontrol
* pacmd
2016-12-11 08:51:56 +01:00
"""
import re
import bumblebee . util
import bumblebee . input
import bumblebee . output
import bumblebee . engine
2017-10-13 17:06:18 +02:00
ALIASES = [ " pasink " , " pasource " ]
2016-12-11 08:51:56 +01:00
class Module ( bumblebee . engine . Module ) :
def __init__ ( self , engine , config ) :
super ( Module , self ) . __init__ ( engine , config ,
bumblebee . output . Widget ( full_text = self . volume )
)
2017-06-09 11:01:25 +02:00
try :
bumblebee . util . execute ( " pulseaudio --start " )
except Exception :
pass
2016-12-11 08:51:56 +01:00
self . _left = 0
self . _right = 0
self . _mono = 0
self . _mute = False
2017-06-15 11:09:00 +02:00
self . _failed = False
2016-12-11 08:51:56 +01:00
channel = " sink " if self . name == " pasink " else " source "
2016-12-17 08:06:58 +01:00
self . _patterns = [
2017-10-13 17:06:18 +02:00
{ " expr " : " name: " , " callback " : ( lambda line : False ) } ,
{ " expr " : " muted: " , " callback " : ( lambda line : self . mute ( False if " no " in line . lower ( ) else True ) ) } ,
{ " expr " : " volume: " , " callback " : self . getvolume } ,
2016-12-17 08:06:58 +01:00
]
2016-12-11 08:51:56 +01:00
engine . input . register_callback ( self , button = bumblebee . input . RIGHT_MOUSE , cmd = " pavucontrol " )
2016-12-17 08:16:10 +01:00
events = [
2017-10-13 17:06:18 +02:00
{ " type " : " mute " , " action " : " toggle " , " button " : bumblebee . input . LEFT_MOUSE } ,
{ " type " : " volume " , " action " : " +2 % " , " button " : bumblebee . input . WHEEL_UP } ,
{ " type " : " volume " , " action " : " -2 % " , " button " : bumblebee . input . WHEEL_DOWN } ,
2016-12-17 08:16:10 +01:00
]
for event in events :
engine . input . register_callback ( self , button = event [ " button " ] ,
cmd = " pactl set- {} - {} @DEFAULT_ {} @ {} " . format ( channel , event [ " type " ] ,
channel . upper ( ) , event [ " action " ] ) )
2016-12-11 08:51:56 +01:00
2016-12-17 08:06:58 +01:00
def mute ( self , value ) :
self . _mute = value
def getvolume ( self , line ) :
if " mono " in line :
m = re . search ( r ' mono:.* \ s* \ / \ s*( \ d+) % ' , line )
if m :
self . _mono = m . group ( 1 )
else :
m = re . search ( r ' left:.* \ s* \ / \ s*( \ d+) %.*r ight:.* \ s* \ / \ s*( \ d+) % ' , line )
if m :
self . _left = m . group ( 1 )
self . _right = m . group ( 2 )
return True
2016-12-11 08:51:56 +01:00
def _default_device ( self ) :
2017-06-05 15:01:10 +02:00
output = bumblebee . util . execute ( " pacmd stat " )
pattern = " Default sink name: " if self . name == " pasink " else " Default source name: "
2016-12-11 08:51:56 +01:00
for line in output . split ( " \n " ) :
if line . startswith ( pattern ) :
return line . replace ( pattern , " " )
return " n/a "
2016-12-11 11:37:24 +01:00
def volume ( self , widget ) :
2017-06-15 11:09:00 +02:00
if self . _failed == True :
return " n/a "
2016-12-11 08:51:56 +01:00
if int ( self . _mono ) > 0 :
return " {} % " . format ( self . _mono )
elif self . _left == self . _right :
return " {} % " . format ( self . _left )
else :
return " {} % / {} % " . format ( self . _left , self . _right )
def update ( self , widgets ) :
2017-06-15 11:09:00 +02:00
try :
self . _failed = False
channel = " sinks " if self . name == " pasink " else " sources "
device = self . _default_device ( )
result = bumblebee . util . execute ( " pacmd list- {} " . format ( channel ) )
found = False
for line in result . split ( " \n " ) :
if device in line :
found = True
continue
if found == False :
2016-12-17 08:06:58 +01:00
continue
2017-06-15 11:09:00 +02:00
for pattern in self . _patterns :
if not pattern [ " expr " ] in line :
continue
if pattern [ " callback " ] ( line ) == False and found == True :
return
except Exception :
self . _failed = True
2017-07-08 06:44:08 +02:00
if bumblebee . util . asbool ( self . parameter ( " autostart " , False ) ) :
2017-06-15 11:09:00 +02:00
try :
bumblebee . util . execute ( " pulseaudio --start " )
self . update ( widgets )
except Exception :
pass
2016-12-11 08:51:56 +01:00
def state ( self , widget ) :
if self . _mute :
2017-10-13 17:06:18 +02:00
return [ " warning " , " muted " ]
return [ " unmuted " ]
2016-12-11 08:51:56 +01:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4