dotfiles-mirror/config/waybar/config.jsonc

90 lines
1.9 KiB
JSON
Raw Normal View History

2025-09-25 04:08:48 +03:30
// -*- mode: jsonc -*-
2025-08-02 11:43:36 +03:30
{
2025-09-25 14:18:09 +03:30
"layer": "top",
"position": "top",
2025-09-25 04:08:48 +03:30
"height": 30,
"spacing": 4,
2025-08-02 11:43:36 +03:30
2025-09-25 04:08:48 +03:30
// Choose the order of the modules
"modules-left": [
"hyprland/workspaces",
"hyprland/window",
],
"modules-center": [
],
2025-08-07 22:12:32 +03:30
2025-09-25 04:08:48 +03:30
"modules-right": [
"cpu",
"memory",
"disk",
"clock",
"tray"
],
2025-08-07 22:12:32 +03:30
2025-09-25 04:08:48 +03:30
// Modules configuration
"hyprland/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"warp-on-scroll": false,
"format": "{name}",
2025-09-25 14:18:09 +03:30
"persistent-workspaces": {
"1": "1",
"2": "2",
"3": "3",
"4": "4",
"5": "5",
"6": "6",
"7": "7",
"8": "8",
"9": "9",
},
2025-09-25 04:08:48 +03:30
},
"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": {
2025-09-25 14:18:09 +03:30
"format-alt": "{:%Y-%m-%d %I:%M %p}"
},
2025-09-25 04:08:48 +03:30
"cpu": {
"format": "CPU: {usage}%",
"tooltip": false
},
"memory": {
2025-09-25 14:18:09 +03:30
"format": "MEM: {used}GiB"
2025-09-25 04:08:48 +03:30
},
"disk": {
"interval": 60,
"path": "/",
2025-09-25 14:18:09 +03:30
"format": "DISK: {free} (free)"
2025-09-25 04:08:48 +03:30
},
"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
}
2025-08-02 11:43:36 +03:30
}