44 lines
962 B
Plaintext
44 lines
962 B
Plaintext
(include "widgets/hardware_stats/hardware-tab/hardware_tab.yuck")
|
|
(include "widgets/bar/bar.yuck")
|
|
(include "widgets/active_window/active_window.yuck")
|
|
|
|
(defwindow bar
|
|
:monitor 0
|
|
:geometry (geometry :x "0%"
|
|
:y "0px"
|
|
:width "100%"
|
|
:height "30px"
|
|
:anchor "top center")
|
|
:stacking "fg"
|
|
:windowtype "dock"
|
|
:wm-ignore false
|
|
:exclusive true
|
|
(box
|
|
(active_window)
|
|
(bar)))
|
|
|
|
(defwindow hardware_stats
|
|
:monitor 0
|
|
:geometry (geometry :x "0%"
|
|
:y "0px"
|
|
:width "0px"
|
|
:height "100px"
|
|
:anchor "right top")
|
|
:stacking "fg"
|
|
:focusable false
|
|
:wm-ignore false
|
|
(box
|
|
(hardware_tab)))
|
|
|
|
(defwindow notification_draw
|
|
:monitor 0
|
|
:geometry (geometry :x "0%"
|
|
:y "0px"
|
|
:width "0px"
|
|
:height "100%"
|
|
:anchor "top right")
|
|
:stacking "fg"
|
|
:focusable false
|
|
:wm-ignore false
|
|
(box))
|