This commit is contained in:
bullshar-k
2026-05-31 16:14:17 -04:00
parent fe3042e05e
commit 609a3322a0
6 changed files with 834 additions and 1 deletions
+90
View File
@@ -0,0 +1,90 @@
//-*- mode: jsonc -*-
{
"layer": "top",
"position": "top",
"height": 30,
"spacing": 4,
// Choose the order of the modules
"modules-left": [
"ext/workspaces",
"custom/sep",
"ext/window",
"custom/sep"
],
"modules-center": [
],
"modules-right": [
"custom/sep",
"network",
"custom/sep",
"cpu",
"custom/sep",
"memory",
"custom/sep",
"disk",
"custom/sep",
"clock",
"custom/sep",
"tray"
],
// Modules configuration
"ext/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"warp-on-scroll": false,
"format": "{name}",
"persistent-workspaces": {
"*" : 9
}
},
"ext/window" : {
"max-length": 40,
"seperate-outputs": false
},
"tray": {
// "icon-size": 21,
"spacing": 10
// "icons": {
// "blueman": "bluetooth",
// "TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png"
// }
},
"clock": {
"format-alt": "{:%Y-%m-%d}"
},
"cpu": {
"format": "CPU: {usage}%",
"tooltip": false
},
"memory": {
"format": "Mem: {used}GiB"
},
"disk": {
"interval": 60,
"path": "/",
"format": "Disk: {free}"
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "Bat: {capacity}% {icon} {time}",
"format-plugged": "{capacity}% ",
"format-alt": "Bat {capacity}%",
"format-time": "{H}:{M}",
"format-icons": ["", "", "", "", ""]
},
"network": {
"format": "Online",
"format-disconnected": "Disconnected ⚠"
},
"custom/sep": {
"format" : "|",
"interval" : 0
}
}