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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// ### ALL SIDES ### //
[{
// ### TOP PANEL ##
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"padding": 4,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"cpu",
"temperature",
"memory",
"disk",
"custom/weather",
],
"modules-center": [
"hyprland/workspaces#4",
],
"modules-right": [
"battery",
"backlight",
"bluetooth",
"network",
//"custom/updater",
"custom/cycle_wall",
],
},
// ### LEFT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "left",
"margin-top": 8,
"margin-bottom": 8,
"margin-left": 8,
//"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/menu",
],
"modules-center": [
"custom/light_dark",
],
"modules-right": [
"idle_inhibitor",
],
},
// ### RIGHT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "right",
"margin-top": 8,
"margin-bottom": 8,
//"margin-left": 1,
"margin-right": 8,
"spacing": 3,
"fixed-center": true,
"ipc": true,
"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"custom/power_vertical",
],
},
// ### BOTTOM PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"wlr/taskbar",
],
"modules-center": [
"hyprland/window",
],
"modules-right": [
"tray",
"keyboard-state",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
],
}]
|