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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
{
"reload-style-on-change": true,
"layer": "top",
"position": "top",
"output": "HDMI-A-1",
"spacing": 0,
"height": 35,
"border-radius": 25,
"modules-left": ["niri/workspaces"],
"modules-center": [],
"modules-right": ["group/right"],
"group/right": {
"orientation": "inherit",
"modules": [
"clock"
]
},
"custom/active_window": {
"exec": "~/.config/waybar/window.sh",
"return-type": "json",
"markup": true
},
"niri/workspaces": {
"on-click": "activate",
"format": "{icon}",
"format-icons": {
"default": "",
"active": "",
"urgent": "",
"empty": ""
},
"persistent-workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": [],
"6": [],
"7": [],
"8": []
}
},
"custom/wbmenu": {
"format": "<span size='13500'></span>",
"on-click": "rofi -show drun -config ~/.config/rofi/gruvbox.rasi",
"on-click-right": "xdg-terminal-exec",
"tooltip-format": "Menu\n\nSuper + Return"
},
"cpu": {
"interval": 2,
"format": "{icon} ",
"format-icons": ["", "", "", "", "", "", "", ""]
},
"memory": {
"interval": 2,
"format": "{icon}",
"format-icons": ["", "", "", "", "", "", "", ""]
},
"clock": {
"format": " {:%I:%M %p • %a, %d/%m} ",
"format-alt": "{:%A, %d %B %Y}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"network": {
"format-icons": ["", "", "", "", ""],
"format": "{icon}",
"format-wifi": "{icon}",
"format-ethernet": "<span size='11500'></span>",
"format-disconnected": "<span size='11500'></span>",
"tooltip-format-wifi": "{essid} ({frequency} GHz)\n⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}",
"tooltip-format-ethernet": "⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}",
"tooltip-format-disconnected": "Disconnected",
"interval": 3,
"spacing": 1
},
"battery": {
"format": "{capacity}% {icon}",
"format-discharging": "{icon}",
"format-charging": "{icon}",
"format-plugged": "",
"format-icons": {
"charging": ["", "", "", "", "", "", "", "", "", ""],
"default": ["", "", "", "", "", "", "", "", "", ""]
},
"format-full": "",
"tooltip-format-discharging": "{power:>1.0f}W↓ {capacity}%",
"tooltip-format-charging": "{power:>1.0f}W↑ {capacity}%",
"interval": 5,
"states": {
"warning": 20,
"critical": 10
}
},
"bluetooth": {
"format": "<span size='11500'></span>",
"format-disabled": "<span size='11500'></span>",
"format-connected": "<span size='11500'></span>",
"format-no-controller": "",
"tooltip-format": "Devices connected: {num_connections}"
},
"pulseaudio": {
"format": "{icon}{volume}%",
"on-click-right": "pamixer -t",
"tooltip-format": "Playing at {volume}%",
"scroll-step": 5,
"format-muted": "",
"format-icons": {
"default": [" ", " ", " "]
}
},
"group/tray-expander": {
"orientation": "inherit",
"drawer": {
"transition-duration": 600,
"children-class": "tray-group-item"
},
"modules": ["custom/expand-icon", "tray"]
},
"custom/expand-icon": {
"format": "",
"tooltip": false
},
"tray": {
"icon-size": 16,
"spacing": 8
},
"custom/separator#blank": {
"format": " ",
"interval": "once",
"tooltip": false
},
"custom/separator#dot": {
"format": " ",
"interval": "once",
"tooltip": false
}
}
|