-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.jsonc
More file actions
108 lines (97 loc) · 2.41 KB
/
Copy pathconfig.jsonc
File metadata and controls
108 lines (97 loc) · 2.41 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"layer": "top",
"position": "top",
"height": 38,
"spacing": 4,
// Choose modules layout
"modules-left": [
"hyprland/workspaces",
"hyprland/window"
],
"modules-center": [
"clock"
],
"modules-right": [
"network",
"cpu",
"memory",
"backlight",
"wireplumber",
"battery",
"tray"
],
// Workspaces Module
"hyprland/workspaces": {
"format": "{name}",
"on-click": "activate",
"all-outputs": true,
"sort-by-number": true,
"persistent-workspaces": {
"*": 5 // Keep 5 workspaces visible by default
}
},
// Window title
"hyprland/window": {
"format": " {class}",
"separate-outputs": true,
"max-length": 30
},
// Clock Module
"clock": {
"timezone": "Asia/Dhaka",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%Y-%m-%d}",
"format": " {:%I:%M %p}"
},
// CPU Module
"cpu": {
"format": " {usage}%",
"tooltip": false,
"interval": 2
},
// Memory Module
"memory": {
"format": " {}%",
"interval": 3
},
// Backlight Module
"backlight": {
"format": "{icon} {percent}%",
"format-icons": ["", ""],
"tooltip": false
},
// Wireplumber Audio Module
"wireplumber": {
"format": "{icon} {volume}%",
"format-muted": " Muted",
"format-icons": ["", "", ""],
"on-click": "pavucontrol",
"max-volume": 150
},
// Network Module
"network": {
"format-wifi": " {essid}",
"format-ethernet": " Connected",
"format-disconnected": "⚠ Disconnected",
"tooltip-format-wifi": "Signal Strength: {signalStrength}%",
"on-click": "nm-connection-editor"
},
// Battery Module
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "{icon} {capacity}%",
"format-charging": " {capacity}%",
"format-plugged": " {capacity}%",
"format-alt": "{time} {icon}",
"format-icons": ["", "", "", "", ""]
},
// System Tray
"tray": {
"icon-size": 18,
"spacing": 10
}
}