dotfiles/dot_config/waybar/config
2020-05-09 01:42:34 -05:00

42 lines
1 KiB
Text

// https://github.com/Alexays/Waybar/wiki/Configuration
{
"layer": "top",
"position": "bottom",
"modules-left": ["sway/workspaces", "sway/mode"],
"modules-center": ["sway/window"],
"modules-right": ["mpd", "disk", "network", "pulseaudio", "clock", "tray"],
"disk": {
"format": "💽{percentage_free}%"
},
"clock": {
"format": "📅 <b>{:%m-%d / %H:%M}</b>",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"network": {
"format-ethernet": "🖥️ {ifname}: {ipaddr}/{cidr}",
"format-wifi": " {essid} ({signalStrength}%)"
},
"pulseaudio": {
"format": "{icon} {volume}%",
"format-bluetooth": "{icon} {volume}%",
"format-muted": "",
"format-icons": {
"headphones": "",
"handsfree": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", ""]
},
"on-click": "pavucontrol"
}
}
// vim: set ft=json5 ts=4 sw=4 tw=0 :