29 lines
658 B
Text
29 lines
658 B
Text
(defwidget bar []
|
|
(centerbox :orientation "h"
|
|
(leftgroup)
|
|
(centergroup)
|
|
(rightgroup)))
|
|
|
|
(defwidget leftgroup []
|
|
(box :class "leftgroup" :orientation "h" :space-evenly false :halign "start"
|
|
(powermenu)
|
|
(profile)
|
|
(workspaces :array workspacesArray)
|
|
(windowtitle)))
|
|
|
|
(defwidget centergroup []
|
|
(box :class "centergroup" :orientation "h" :space-evenly false :halign "start"
|
|
(music)))
|
|
|
|
(defwidget rightgroup []
|
|
(box :class "rightgroup" :orientation "h" :space-evenly false :halign "end"
|
|
(idleinhibit)
|
|
(volume)
|
|
(network)
|
|
(vpn)
|
|
(bluetooth)
|
|
(battery)
|
|
(sysdisk)
|
|
(sysmem)
|
|
(clock)
|
|
(tray)))
|