sway-config/config/waybar/config

93 lines
2.6 KiB
Text

{
// "layer": "top", // Waybar at top layer
// "position": "bottom", // Waybar position (top|bottom|left|right)
// "height": 30, // Waybar height (to be removed for auto height)
"margin": "20 20 0 20",
// "width": 1280, // Waybar width
// Choose the order of the modules
"modules-left": ["sway/workspaces", "sway/window"],
"modules-center": ["clock"],
"modules-right": ["backlight", "battery", "custom/mem", "pulseaudio", "tray"],
//***************************
//* Modules configuration *
//***************************
"sway/workspaces": {
"disable-scroll": true,
"persistent_workspaces": {
"1": [],
"2": [],
"3": [],
"4": []
}
},
"sway/window": {
"max-length": 80
},
"clock": {
// "timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format": "{:%a, %d %b, %I:%M %p}"
},
"pulseaudio": {
// "scroll-step": 1, // %, can be a float
"reverse-scrolling": 0,
"format": "{volume}% {icon} {format_source}",
"format-bluetooth": "{volume}% {icon} {format_source}",
"format-bluetooth-muted": "󰗿 {icon} {format_source}",
"format-muted": " {format_source}",
"format-source": "{volume}% ",
"format-source-muted": "0% ",
"format-icons": {
"headphone": "",
"hands-free": "󰋎",
"headset": "󰋎",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", ""]
},
"on-click": "pavucontrol",
"min-length": 8
},
"custom/mem": {
"format": "{} 󰍛",
"interval": 3,
"exec": "free -h | awk '/Mem:/{printf $3}'",
"tooltip": false
},
"backlight": {
"device": "intel_backlight",
"format": "{percent}% {icon}",
"format-icons": ["","","","","","","","",""],
"min-length": 7
},
"battery": {
"states": {
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
"format-alt": "{time} {icon}",
"format-icons": ["󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󱟢"],
"on-update": "$HOME/.config/waybar/scripts/battery.sh"
},
"tray": {
"icon-size": 16,
"spacing": 8
}
}