Files
colorshell/eww/widgets/audio-popup/output-slider.yuck
T
2024-12-07 16:43:37 -03:00

19 lines
520 B
Plaintext

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