This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/os/linux/waybar/config

128 lines
3.5 KiB
Plaintext

{
"layer": "top",
"position": "bottom",
"output": ["eDP-1", "DP-3", "DP-1"],
"height": 32,
"modules-left": ["clock", "sway/title"],
"modules-center": ["sway/workspaces"],
"modules-right": [
"idle_inhibitor",
"bluetooth",
// "wireplumber",
"pulseaudio",
// "network",
"cpu",
"memory",
// "temperature",
"backlight",
"battery",
"tray"
],
"bluetooth": {
"format": "<span foreground=\"#666666\"></span>",
"format-connected": "<span foreground=\"#666666\"></span>",
"format-connected-battery": "<span foreground=\"#666666\"></span>",
// "format-device-preference": [ "device1", "device2" ], // preference list deciding the displayed device
"tooltip-format": "{controller_alias}@{controller_address} ({num_connections} connected)",
"tooltip-format-connected": "{controller_alias}@{controller_address} ({num_connections} connected)\n{device_enumerate}",
"tooltip-format-enumerate-connected": "{device_alias}@{device_address}",
"tooltip-format-enumerate-connected-battery": "{device_alias}@{device_address} ( {device_battery_percentage}%)"
},
"sway/workspaces": {
"disable-scroll": false,
"persistent_workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": [],
"6": [],
"7": [],
"8": [],
"9": []
// "10": []
},
"all-outputs": true,
"format": "{name}"
},
"idle_inhibitor": {
"format": "<span foreground=\"#666666\">{icon}</span>",
"format-icons": {
"activated": "﯎",
"deactivated": "﯏"
}
},
"tray": {
"icon-size": 24,
"spacing": 4
},
"clock": {
"interval": 1,
"format": "{:%a %b %d %H:%M:%S}"
},
"cpu": {
"format": "{usage} <span foreground=\"#666666\"></span>",
"tooltip": true,
"interval": 3
},
"memory": {
"format": "{} <span foreground=\"#666666\"></span>"
},
"temperature": {
// "thermal-zone": 2,
// "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
"critical-threshold": 80,
// "format-critical": "{temperatureC}°C {icon}",
"format": "{temperatureC}°C {icon}",
"format-icons": ["", "", ""]
},
"backlight": {
// "device": "acpi_video1",
"format": "{percent}% {icon}",
"format-icons": ["", ""]
},
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ﮣ",
"format-alt": "{time} {icon}",
"format-good": "", // An empty format will hide the module
"format-full": "",
"format-icons": ["", "", "", "", ""]
},
"network": {
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
"format-linked": "{ifname} (No IP) ",
"format-disconnected": "Disconnected ⚠",
"format-alt": "{ifname}: {ipaddr}/{cidr}"
},
"pulseaudio": {
// "scroll-step": 1, // %, can be a float
"format": "{volume} <span foreground=\"#666666\">{icon}</span> {format_source}",
//"format": "{volume}% {icon} {format_source}",
//"format-bluetooth": "{volume}% {icon} {format_source}",
//"format-bluetooth-muted": " {icon} {format_source}",
//"format-muted": " {format_source}",
"format-muted": "<span foreground=\"#666666\">ﱝ</span> {format_source}",
"format-source": "<span foreground=\"#bf7998\"></span>",
"format-source-muted": "<span foreground=\"#6c88a6\"></span>",
"format-icons": {
"headphones": "",
"handsfree": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", ""]
},
// TODO: toggle mute?
"on-click": "pavucontrol"
}
}