nix-config/home-manager/dotfiles/waybar/config.jsonc

59 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-10-20 16:21:47 +02:00
{
2024-10-22 10:54:12 +02:00
"layer": "top",
"modules-left": ["sway/workspaces", "sway/mode"],
2025-01-19 18:30:54 +01:00
"modules-center": [ ],
"modules-right": ["mpris", "wireplumber","cpu", "bluetooth", "network", "clock", "privacy"],
2024-10-22 10:54:12 +02:00
"clock": {
"format-alt": "{:%a, %d. %b %H:%M}"
},
"wireplumber": {
2025-01-19 18:30:54 +01:00
"format": "{volume}% ",
2024-10-22 10:54:12 +02:00
"format-muted": "",
"max-volume": 120,
"scroll-step": 0.2
},
"privacy": {
"icon-spacing": 4,
"icon-size": 18,
"transition-duration": 250,
"modules": [
{
"type": "screenshare",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-out",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-in",
"tooltip": true,
"tooltip-icon-size": 24
}
]
2025-01-19 18:30:54 +01:00
},
"cpu": {
"format": "{}%  "
},
"network": {
"interface": "wlp3s0",
"format": "{ifname}",
"format-wifi": "{essid} ({signalStrength}%)  ",
"format-ethernet": "{ipaddr}/{cidr} 󰊗",
"format-disconnected": "", //An empty format will hide the module.
"tooltip-format": "{ifname} via {gwaddr} 󰊗",
"tooltip-format-wifi": "{essid} ({signalStrength}%)  ",
"tooltip-format-ethernet": "{ifname}  ",
"tooltip-format-disconnected": "Disconnected",
"max-length": 50
},
"bluetooth": {
"format": "",
"format-disabled": "",
"format-connected": ""
2024-12-08 10:11:34 +01:00
}
2024-10-20 16:21:47 +02:00
}