2024-02-29 22:11:08 +01:00
|
|
|
{
|
|
|
|
"cpu": {
|
|
|
|
"interval": 2,
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[CPU] {usage}%",
|
2024-03-02 23:49:00 +01:00
|
|
|
"on-click": "$TERMINAL -e btop",
|
|
|
|
},
|
|
|
|
"custom/gpu": {
|
2024-03-05 13:28:48 +01:00
|
|
|
"interval": 2,
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[GPU] {}%",
|
2024-03-02 23:49:00 +01:00
|
|
|
"exec": "nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits",
|
|
|
|
"return-type": "",
|
|
|
|
"on-click": "$TERMINAL -e nvtop",
|
2024-02-29 22:11:08 +01:00
|
|
|
},
|
|
|
|
"memory": {
|
|
|
|
"interval": 2,
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[MEM] {used} G",
|
2024-03-02 23:49:00 +01:00
|
|
|
"on-click": "$TERMINAL -e btop",
|
2024-02-29 22:11:08 +01:00
|
|
|
},
|
|
|
|
"disk": {
|
|
|
|
"interval": 30,
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[SSD] {specific_used:0.0f} G",
|
2024-03-02 23:49:00 +01:00
|
|
|
"path": "/",
|
2025-01-25 22:09:37 +01:00
|
|
|
"unit": "GiB",
|
2025-01-24 11:04:56 +01:00
|
|
|
"on-click": "$TERMINAL -e dua i /",
|
2024-02-29 22:11:08 +01:00
|
|
|
},
|
2025-02-02 11:05:39 +01:00
|
|
|
"custom/processes": {
|
|
|
|
"interval": 2,
|
|
|
|
"format": "[PRC] {}",
|
|
|
|
"exec": "ps --ppid 2 -p 2 --deselect --no-headers | wc -l",
|
|
|
|
"return-type": "",
|
|
|
|
"tooltip-format": "Number of running processes",
|
|
|
|
"on-click": "$TERMINAL -e btop",
|
|
|
|
},
|
2025-02-05 09:58:20 +01:00
|
|
|
"custom/tcp": {
|
|
|
|
"interval": 2,
|
|
|
|
"format": "[TCP] {}",
|
|
|
|
"exec": "lsof -tPniTCP | wc -l",
|
|
|
|
"return-type": "",
|
|
|
|
"tooltip-format": "Number of processes with TCP connections",
|
|
|
|
"on-click": "$TERMINAL -e bandwhich",
|
|
|
|
},
|
|
|
|
"custom/udp": {
|
|
|
|
"interval": 2,
|
|
|
|
"format": "[UDP] {}",
|
|
|
|
"exec": "lsof -tPniUDP | wc -l",
|
|
|
|
"return-type": "",
|
|
|
|
"tooltip-format": "Number of processes with UDP connections",
|
|
|
|
"on-click": "$TERMINAL -e bandwhich",
|
|
|
|
},
|
2024-02-29 22:11:08 +01:00
|
|
|
"wireplumber": {
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[VOL] {volume}%",
|
2025-01-25 22:09:37 +01:00
|
|
|
"format-muted": "",
|
2024-02-29 22:11:08 +01:00
|
|
|
"scroll-step": 5,
|
2024-06-17 16:19:21 +02:00
|
|
|
"on-click": "easyeffects",
|
2024-03-05 13:28:48 +01:00
|
|
|
},
|
2025-01-25 22:09:37 +01:00
|
|
|
"clock": {
|
|
|
|
"interval": 60,
|
2025-02-02 11:05:39 +01:00
|
|
|
"format": "[CLK] {:%H:%M}",
|
2025-01-25 22:09:37 +01:00
|
|
|
"tooltip-format": "{:%A, %Y-%m-%d}",
|
|
|
|
"on-click": "date -u +'%Y-%m-%dT%H:%M:%SZ' | wl-copy",
|
2024-03-21 18:26:30 +01:00
|
|
|
},
|
2024-07-15 15:59:55 +02:00
|
|
|
}
|