Files
colorshell/eww/widgets/separator.yuck
T
retrozinndev 0c41ca33b2 eww: stuff!
2025-01-12 12:12:31 -03:00

5 lines
249 B
Plaintext

(defwidget separator [ ?orientation ?alpha ?style ]
(box :class "separator ${ orientation == '' || orientation == 'horizontal' || orientation == "h" ? 'horizontal' : 'vertical' }"
:style "opacity: ${ alpha == '' ? 1 : alpha }; ${style}")
)