Files
colorshell/eww/widgets/audio-popup/source-slider.yuck
T

20 lines
572 B
Plaintext

(defwidget source-slider []
(box :class "source-slider"
:space-evenly true
(overlay
(scale :min 0
:max 100
:value "${json_volume.source}"
:orientation "horizontal"
:draw-value false
:flipped false
:onchange "wpctl set-volume @DEFAULT_AUDIO_SOURCE@ $(awk -v n={} 'BEGIN { print (n / 100) }')"
:class "output-volume-slider")
(label :text "󰍬"
:xalign 0)
)
)
)