dotfiles/eww/volume.yuck
2022-12-28 10:01:12 -06:00

33 lines
840 B
Plaintext

(defwindow volume
:geometry (geometry :x "0px"
:y "40px"
:anchor "top center")
:stacking "fg"
:monitor "0"
(volshow))
(defwidget volshow []
(box
:class "volume-container"
:orientation "h"
:space-evenly "false"
:spacing 5
(button
:class "volume-icon"
:valign "center"
:halign "center"
:onclick "" "墳")
(scale
:class "volume-value"
:value {volume_percent}
:valign "center"
:halign "start"
:orientation "h"
:max 150
:min 0)
(label
:class "volume-label"
:halign "start"
:valign "center"
:text "${volume_percent}%")))