"profiles"

This commit is contained in:
iris committed 2024-08-02 12:16:08 -04:00
1 parent a89b397a91
commit a4eacee260
4 files changed
+15 -2

No files matched your search

+24
View File
@@ -0,0 +1,24 @@
(include "bar/widget.yuck")
(include "bar/widgets/sys.yuck")
(include "bar/widgets/wss.yuck")
(include "bar/widgets/info.yuck")
(defwidget bar [monitor]
(centerbox :class "bar" :orientation "h"
(bar-left)
(bar-center :monitor monitor)
(bar-right)))
(defwidget bar-left []
(box :class "bar-left" :space-evenly false :halign "start"
(cpu) (sep) (temp) (sep) (mem) (sep) (disk)))
(defwidget bar-center [monitor]
(box :class "bar-center" :space-evenly false
(workspaces :monitor monitor)))
(defwidget bar-right []
(box :class "bar-right" :space-evenly false :halign "end"
(brightness) (vol) (net) (sep) (date) (time)))