dotfiles-mirror/config/waybar/config.jsonc
2025-09-26 03:16:35 +03:30

89 lines
1.9 KiB
JSON

// -*- mode: jsonc -*-
{
"layer": "bottom",
"position": "bottom",
"height": 30,
"spacing": 4,
// Choose the order of the modules
"modules-left": [
"hyprland/workspaces",
"custom/sep",
"hyprland/window",
],
"modules-right": [
"battery",
"cpu",
"memory",
// "disk",
"clock",
"tray"
],
// Modules configuration
"hyprland/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"warp-on-scroll": false,
"format": "{name}",
"persistent-workspaces": {
"1": "1",
"2": "2",
"3": "3",
"4": "4",
"5": "5",
"6": "6",
"7": "7",
"8": "8",
"9": "9",
},
},
"hyprland/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": "{:%I:%M %p}",
"format-alt": "{:%Y-%m-%d %I:%M %p}"
},
"cpu": {
"format": "CPU: {usage}%",
"tooltip": false
},
"memory": {
"format": "MEM: {used}GiB"
},
"disk": {
"interval": 60,
"path": "/",
"format": "DISK: {free} (free)"
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "BAT: {capacity}%{time}",
"format-plugged": "",
"format-alt": "Bat {capacity}%",
"format-time": "{H}:{M}",
},
"network": {
"format": "Online",
"format-disconnected": "Disconnected ⚠"
},
"custom/sep": {
"format" : " ",
"interval" : 0
}
}