18 lines
439 B
Plaintext
18 lines
439 B
Plaintext
(deflisten audio-data
|
|
`~/.config/eww/modules/audio.py`)
|
|
|
|
(defwidget volume [align]
|
|
(box :orientation "h"
|
|
:halign align
|
|
:class "module volume ${audio-data['mute'] ? 'muted' : ''}"
|
|
:space-evenly false
|
|
:spacing 0
|
|
(revealer :transition "none"
|
|
:reveal {!audio-data["mute"]}
|
|
"")
|
|
(revealer :transition "none"
|
|
:reveal {audio-data["mute"]}
|
|
"")
|
|
' ${audio-data["volume"]}%'))
|
|
|