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
|
//* ---- 💫 https://github.com/JaKooLit 💫 ---- *//
/* Waybar Modules - Groups Modules */
/* Basically created to reduce the lines in Waybar Modules bank */
/* NOTE: This is only for Groups */
{
// GROUPS
"group/app_drawer": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "custom/menu",
"transition-left-to-right": true
},
"modules": [
"custom/menu",
"custom/light_dark",
"custom/file_manager",
"custom/tty",
"custom/browser",
"custom/settings",
]
},
"group/motherboard": {
"orientation": "horizontal",
"modules": [
"cpu",
"power-profiles-daemon",
"memory",
"temperature",
"disk",
]
},
"group/mobo_drawer": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "cpu",
"transition-left-to-right": true
},
"modules": [
"temperature",
"cpu",
"power-profiles-daemon",
"memory",
"disk",
]
},
"group/laptop": {
"orientation": "inherit",
"modules": [
"backlight",
"battery",
]
},
"group/audio": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "pulseaudio",
"transition-left-to-right": true
},
"modules": [
"pulseaudio",
"pulseaudio#microphone",
]
},
"group/connections": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "bluetooth",
"transition-left-to-right": true
},
"modules": [
"network",
"bluetooth",
]
},
"group/status": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "custom/power",
"transition-left-to-right": false
},
"modules": [
"custom/power",
"custom/lock",
"keyboard-state",
"custom/keyboard",
]
},
"group/notify": {
"orientation": "inherit",
"drawer": {
"transition-duration": 500,
"children-class": "custom/swaync",
"transition-left-to-right": false
},
"modules": [
"custom/swaync",
"custom/dot_update",
]
},
// groups for vertical
"group/power#vert": {
"orientation": "inherit",
"drawer": {
"transition-duration": 300,
"children-class": "not-memory",
"transition-left-to-right": false
},
"modules": [
"custom/power",
"custom/lock",
"custom/logout",
"custom/reboot"
]
},
}
|