dotfiles/system/.config/waybar/config
Severin Kaderli 38f95b1847
Use native mpris module in Waybar
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2023-01-20 20:39:33 +01:00

92 lines
2.4 KiB
Text

[{
"layer": "bottom<",
"position": "top",
"height": 35,
// Space between modules
"spacing": 6,
"margin": "6px",
"modules-left": ["sway/workspaces", "sway/mode"],
"modules-center": ["sway/window"],
"modules-right": ["custom/update", "pulseaudio", "battery", "network", "clock", "custom/power"],
"sway/workspaces": {
"disable-scroll": true,
"format": "{icon}",
"format-icons": {
"1": "",
"2": "",
"3": "",
"4": "",
"5": "",
"6": "",
"7": "",
"8": "",
"9": "",
"10": "ﱘ",
}
},
"sway/window": {
"max-length": 50,
},
"custom/update": {
"format": "累 {}",
"exec": "update-count",
"interval": 60,
"tooltip": false,
},
"pulseaudio": {
"scroll-step": 5,
"format": "{icon} {volume}%",
"format-icons": {
"headphone": "",
"speaker": "墳",
"default": ["奄", "奔", "墳"]
},
"tooltip": false,
"on-click": "pavucontrol"
},
"battery": {
"format": "{icon} {capacity}%",
"format-charging": " {capacity}%",
"format-plugged": " {capacity}%",
"format-icons": ["", "", "", "", "", "", "", "", "", ""],
"tooltip": false,
},
"network": {
"format-wifi": "直 {essid}",
"format-ethernet": "{ipaddr}/{cidr} ",
"format-linked": "{ifname} (No IP) ",
"format-disconnected": "Disconnected ",
"tooltip": false,
"on-click": "nm-connection-editor",
},
"clock": {
"format": " {:%F %H:%M:%S}",
"tooltip": false,
"interval": 1,
"on-click": "xdg-open https://cloud.schaer.dev/apps/calendar",
},
"custom/power": {
"format": " ",
"tooltip": false,
"on-click": "$XDG_BIN_HOME/power",
}
},
{
"layer": "bottom",
"position": "bottom",
"height": 35,
"spacing": 4,
"margin": "6px",
"modules-left": ["tray"],
"modules-center": [],
"modules-right": ["mpris"],
"tray": {
"spacing": 12,
},
"mpris": {
"player": "tauon",
"format": "{artist} - {album} - {title}",
"on-click": "swaymsg workspace 10",
},
}
]