19 lines
442 B
Plaintext
19 lines
442 B
Plaintext
(defwidget volume_box [?text]
|
|
(box :orientation "horizontal"
|
|
:halign "center"
|
|
text
|
|
)
|
|
)
|
|
(defwindow volume
|
|
:windowtype "normal"
|
|
:stacking "fg"
|
|
:monitor "1"
|
|
:geometry (geometry :x "20px"
|
|
:y "20px"
|
|
:width "20px"
|
|
:heigth "30px")
|
|
|
|
(volume_box :text "hello world"
|
|
)
|
|
)
|