nixos/config/waybar/config

94 lines
1.4 KiB
Text
Raw Normal View History

2023-07-22 20:08:50 +04:00
// -*- mode: json -*-
{
2024-08-11 15:38:00 +04:00
"layer": "top",
"position": "top",
2024-09-04 21:43:48 +04:00
"margin": "10px",
2023-07-22 20:08:50 +04:00
"modules-left": [
2024-08-05 05:46:06 +04:00
"hyprland/workspaces",
2023-07-22 20:08:50 +04:00
],
"modules-center": [
],
"modules-right": [
2023-08-31 07:47:54 +04:00
"clock",
2023-07-22 20:08:50 +04:00
"pulseaudio",
2023-08-31 08:33:36 +04:00
"backlight",
2023-07-22 20:08:50 +04:00
"memory",
"cpu",
"battery",
"tray"
],
2024-08-05 05:46:24 +04:00
"hyprland/workspaces": {
2024-08-07 02:55:22 +04:00
"all-outputs": true,
2023-07-22 20:08:50 +04:00
"disable-scroll": true,
2023-07-23 02:25:55 +04:00
"format": "{name}",
"persistent_workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": [],
2023-07-23 02:27:19 +04:00
"6": []
2023-07-23 02:25:55 +04:00
}
2023-07-22 20:08:50 +04:00
},
2023-08-31 07:47:54 +04:00
"clock": {
2023-08-31 13:26:33 +04:00
"format": "{:%H:%M, %m-%d}",
2023-07-22 20:08:50 +04:00
"tooltip": false
},
"pulseaudio": {
"format": "{icon} {volume:2}%",
2023-09-04 13:44:07 +04:00
"format-bluetooth": "{icon} {volume}% ",
2024-08-09 19:53:41 +04:00
"format-muted": "󰝟 MUTED",
2023-07-22 20:08:50 +04:00
"format-icons": {
"headphones": "",
"default": [
"",
""
]
},
"scroll-step": 5,
"on-click": "pamixer -t",
"on-click-right": "pavucontrol"
},
"memory": {
"interval": 5,
"format": "Mem {}%"
},
"cpu": {
"interval": 5,
"format": "CPU {usage:2}%"
},
2023-08-31 08:33:36 +04:00
"backlight": {
"device": "intel_backlight",
"format": "{percent}% {icon}",
2023-08-31 13:27:45 +04:00
"format-icons": [" ", " "]
2023-08-31 08:36:50 +04:00
},
2023-07-22 20:08:50 +04:00
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "{icon} {capacity}%",
2023-07-22 20:08:50 +04:00
"format-icons": [
"",
"",
"",
"",
""
]
},
"disk": {
"interval": 5,
"format": "Disk {percentage_used:2}%",
"path": "/"
},
"tray": {
2023-07-23 02:31:00 +04:00
"icon-size": 18
2023-07-22 20:08:50 +04:00
}
}