This repository was archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheww.yuck
More file actions
91 lines (82 loc) · 2.28 KB
/
Copy patheww.yuck
File metadata and controls
91 lines (82 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
(include "./custom/config.yuck")
(include "./custom/icons.yuck")
(include "./custom/override.yuck")
(include "./modules/modules.yuck")
(defwidget full-bar []
(centerbox
:orientation "horizontal"
(box
:space-evenly false
(rancid-icon
:icon-type "text"
:icon "")
(workspaces)
(layouts :screen 0)
(box :width 250)
(music))
(box
:space-evenly false
(calendar-button)
(time))
(box
:space-evenly false
:halign "end"
(icon
:icon-type "text"
:icon ""
:lclick "/sbin/flameshot gui &")
(bluetooth)
(wifi)
(volume)
(icon
:icon-type "text"
:icon ""))))
(defwindow full-bar
:monitor 0
:windowtype "dock"
:wm-ignore false
:stacking "fg"
:geometry (geometry :x 0 :y 0 :width "100%" :height "40px" :anchor "top center")
:reserve (struts :distance "40px" :side "top")
(full-bar))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defwidget left-bar []
(box
:space-evenly false
(icon :icon "" :lclick "")
(workspaces)
(layouts :screen 0)))
(defwidget middle-bar []
(box))
(defwidget right-bar []
(box
:orientation "horizontal"
:halign "start"
:space-evenly false
:spacing 10
(icon :icon "" :lclick "/sbin/flameshot gui &")
(bluetooth)
(volume)
(icon :icon "" :lclick "")))
(defwindow left-bar-window
:monitor 0
:windowtype "dock"
:wm-ignore false
:stacking "fg"
:geometry (geometry :x 500 :y 5 :height "45px" :anchor "top left")
:reserve (struts :distance "0px" :side "top")
(left-bar))
(defwindow middle-bar-window
:monitor 0
:windowtype "dock"
:wm-ignore false
:stacking "fg"
:geometry (geometry :x -5 :y 5 :height "45px" :anchor "top center")
(middle-bar))
(defwindow right-bar-window
:monitor 0
:windowtype "dock"
:wm-ignore false
:stacking "fg"
:geometry (geometry :x -5 :y 5 :height "45px" :anchor "top right")
(right-bar))