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
|
{
"layer": "top",
"margin": 2,
"spacing": 2,
"fixed-center": false,
"modules-left": ["custom/cat", "hyprland/workspaces", "tray"],
"modules-center": [],
"modules-right": ["backlight", "pulseaudio", "network", "bluetooth", "cpu", "memory", "temperature", "disk", "battery", "clock"],
"custom/cat": {
"format": "<span color='#181926' font-family='Symbols Nerd Font Mono'></span>",
"tooltip": false,
},
"hyprland/workspaces": {
"persistent-workspaces": {
"*": 5
},
"format": "<span font-family='Symbols Nerd Font Mono'>{icon}</span>",
"format-icons": {
"empty": "",
"default": "",
}
},
"tray": {
"icon-size": 20,
"spacing": 5,
},
"bluetooth": {
"format": "",
"format-connected": "<span color='#8aadf4' font-family='Symbols Nerd Font Mono'></span>",
"tooltip-format": "{device_alias}",
"on-click": "footclient bluetuith"
},
"network": {
"format-wifi": "<span color='#b7bdf8' font-family='Symbols Nerd Font Mono'></span>",
"format-disconnected": "<span color='#b7bdf4' font-family='Symbols Nerd Font Mono'></span>",
"tooltip-format": "{essid}",
"on-click": "footclient -o pad=0x0 nmtui"
},
"pulseaudio": {
"format": "<span color='#c6a0f6' font-family='Symbols Nerd Font Mono'>{icon}</span> {volume}%",
"format-muted": "<span color='#c6a0f6' font-family='Symbols Nerd Font Mono'></span> <span color='#8087a2'>{volume}%</span>",
"format-icons": {
"default": ["", "", ""],
},
"on-click": "footclient pulsemixer"
},
"backlight": {
"device": "intel_backlight",
"format": "<span color='#ffffff' font-family='Symbols Nerd Font Mono'>{icon}</span> {percent}%",
"format-icons": ["", "", "", "", "", "", "", "", ""],
"tooltip": false
},
"cpu": {
"interval": 1,
"format": "<span color='#7dc4e4' font-family='Symbols Nerd Font Mono'> </span> {icon0}{icon1}{icon2}{icon3}{icon4}{icon5}{icon6}{icon7}{icon8}{icon9}{icon10}{icon11}{icon12}{icon13}{icon14}{icon15}",
"format-icons": [
"<span color='#c6a0f6'>▁</span>",
"<span color='#8aadf4'>▂</span>",
"<span color='#8bd5ca'>▃</span>",
"<span color='#a6da95'>▄</span>",
"<span color='#eed49f'>▅</span>",
"<span color='#f5a97f'>▆</span>",
"<span color='#ee99a0'>▇</span>",
"<span color='#ed8796'>█</span>"
],
"on-click": "footclient -o pad=0x0 btop -p 1",
},
"temperature": {
"interval": 5,
"hwmon-path-abs": "/sys/devices/platform/coretemp.0/hwmon",
"input-filename": "temp1_input",
"format": "<span color='#a6da95' font-family='Symbols Nerd Font Mono'>{icon}</span> {temperatureC}°",
"format-critical": "<span color='#181926' font-family='Symbols Nerd Font Mono'>{icon}</span> {temperatureC}°",
"critical-threshold": 70,
"format-icons": ["", "", "", "", ""],
"tooltip": false
},
"memory": {
"interval": 5,
"format": "<span color='#8bd5ca' font-family='Symbols Nerd Font Mono'></span> {used:0.1f}GiB",
"tooltip-format": "{used:0.1f}GiB / {total:0.1f}GiB"
},
"disk": {
"format": "<span color='#eed49f' font-family='Symbols Nerd Font Mono'></span> {percentage_used}%",
"tooltip-format": "{used} / {total}"
},
"battery": {
"interval": 5,
"states": {
"warning": 25,
"critical": 10
},
"format": "<span color='#f5a97f' font-family='Symbols Nerd Font Mono'>{icon}</span> {capacity}%",
"format-warning": "<span font-family='Symbols Nerd Font Mono'>{icon}</span> {capacity}%",
"format-critical": "<span font-family='Symbols Nerd Font Mono'>{icon}</span> {capacity}%",
"format-charging": "<span font-family='Symbols Nerd Font Mono'>{icon}</span> {capacity}%",
"format-icons": ["", "", "", "", ""],
},
"clock": {
"format": "<span color='#ed8796' font-family='Symbols Nerd Font Mono'></span> {:%H:%M}",
"tooltip-format": "{:%A, %B %d, %Y (%R)}"
}
}
|