33 lines
896 B
Text
33 lines
896 B
Text
(defwindow main
|
|
:monitor 0
|
|
:geometry (geometry :x "0%"
|
|
:y "0%"
|
|
:width "50%"
|
|
:height "50%"
|
|
:anchor "center")
|
|
:stacking "fg"
|
|
:exclusive false
|
|
:focusable false
|
|
(workspaces)
|
|
)
|
|
|
|
(defwidget clock []
|
|
(box :class "clock"
|
|
{formattime(EWW_TIME, "%b %m %H:%M:%S")}
|
|
)
|
|
)
|
|
|
|
(defwidget workspaces []
|
|
(box :class "workspaces"
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
(button :class "workspace-button")
|
|
)
|
|
)
|