config_sway/waybar.d/config

156 lines
5.4 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// vi: ft=jsonc
{
"layer": "top",
"height": 25,
"modules-left": [
"sway/workspaces"
],
"modules-center": [
"sway/window"
],
"modules-right": [
"custom/separator",
"custom/mail",
"custom/separator",
"pulseaudio",
"custom/media",
"custom/separator",
"network#wl0",
"network#en0",
"network#vpn0",
"custom/separator",
"cpu",
"memory",
"custom/separator",
"backlight",
"custom/separator",
"battery",
"custom/separator",
"clock",
"tray"
],
"custom/separator": {
"format": " <span foreground='#268bd2'></span> "
},
"custom/mail": {
"format": "{icon} {}",
"return-type": "json",
"max-length": 15,
"interval": 30,
"format-icons": {
"unread": " ",
"read": " "
},
"escape": true,
"exec": "$HOME/.config/sway/bin/mail 2> /dev/null"
},
"custom/media": {
"format": "{icon} {}",
"return-type": "json",
"max-length": 40,
"format-icons": {
"chromium": " ",
"firefox": " ",
"Plexamp": "",
"default": " "
},
"escape": true,
"exec": "$HOME/.config/sway/bin/mediaplayer.py 2> /dev/null",
"exec-if": "pgrep plexamp"
},
"clock": {
"format": "<span foreground='#ebdbb2'> </span>{:%a, %d %b <span foreground='#ebdbb2'> </span>%H:%M}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"cpu": {
"format": "<span foreground='#ebdbb2'></span> {usage}%",
"states": {
"warning": 70,
"critical": 90
}
},
"memory": {
"format": "<span foreground='#ebdbb2'></span> {}%",
"states": {
"warning": 70,
"critical": 90
}
},
"backlight": {
"format": "<span foreground='#ebdbb2'>{icon}</span> {percent}%",
"format-icons": [""]
},
"battery": {
"bat": "BAT0",
"design-capacity": true,
"states": {
"warning": 30,
"critical": 15
},
"format": "<span foreground='#ebdbb2'>{icon}</span> {capacity}%",
"format-charging": "<span foreground='#fb4934'></span> {capacity}%",
"format-icons": ["", "", "", "", ""]
},
"network#wl0": {
"interval": 2,
"interface": "wl0",
"format": "{ifname}",
"format-wifi": "<span foreground='#ebdbb2'> </span>{ifname} {essid} ({signalStrength}%)",
"format-ethernet": "<span foreground='#ebdbb2'> </span>{ifname}",
"format-linked": "<span foreground='#606060'> </span>{ifname}",
"format-disconnected": "<span foreground='#fb4934'> </span>{ifname} ",
"tooltip-format": "{ifname}\n\t{ipaddr}/{cidr}\n  \t{bandwidthDownBits}\n  \t{bandwidthUpBits}",
"tooltip-format-linked": "{ifname} linked",
"tooltip-format-disconnected": "{ifname} disconnected",
"on-click": "foot -T float nmtui"
},
"network#en0": {
"interval": 2,
"interface": "en0",
"format": "{ifname}",
"format-wifi": "<span foreground='#ebdbb2'> </span> {essid} ({signalStrength}%)",
"format-ethernet": "<span foreground='#ebdbb2'> </span>{ifname}",
"format-linked": "<span foreground='#606060'> </span>{ifname}",
"format-disconnected": "<span foreground='#fb4934'> </span>{ifname}",
"tooltip-format": "{ifname}\n\t{ipaddr}/{cidr}\n  \t{bandwidthDownBits}\n  \t{bandwidthUpBits}",
"tooltip-format-linked": "{ifname} linked",
"tooltip-format-disconnected": "{ifname} disconnected",
"on-click": "foot -T float nmtui"
},
"network#vpn0": {
"interval": 2,
"interface": "vpn0",
"format": "{ifname}",
"format-wifi": "<span foreground='#ebdbb2'> </span> {essid} ({signalStrength}%)",
"format-ethernet": "<span foreground='#ebdbb2'> </span>{ifname}",
"format-linked": "<span foreground='#606060'> </span>{ifname}",
"format-disconnected": "<span foreground='#fb4934'> </span> {ifname}",
"tooltip-format": "{ifname}\n\t{ipaddr}/{cidr}\n  \t{bandwidthDownBits}\n  \t{bandwidthUpBits}",
"tooltip-format-linked": "{ifname} linked",
"tooltip-format-disconnected": "{ifname} disconnected",
"on-click": "foot -T float nmtui"
},
"pulseaudio": {
"format": "<span foreground='#ebdbb2'>{icon} </span>{volume}% {format_source}",
"format-bluetooth": "<span foreground='#ebdbb2'>{icon} </span>{volume}% {format_source}",
"format-bluetooth-muted": "<span foreground='#fb4934'> {icon} </span>{format_source}",
"format-muted": "<span foreground='#fb4934'> </span>{format_source}",
"format-source": "<span foreground='#ebdbb2'> </span>{volume}%",
"format-source-muted": "<span foreground='#fb4934'> </span>",
"format-icons": {
"headphone": "🎧",
"hands-free": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", ""]
},
"on-click": "pkill -x pavucontrol || pavucontrol"
},
"tray": {
"padding": 10,
"spacing": 10
}
}