CrOS/modules/users/crow/waybar/config.jsonc
2024-10-01 17:27:27 -04:00

112 lines
3.3 KiB
JSON

// -*- mode: jsonc -*-
{
"layer": "top",
"position": "top",
"height": 30, // Waybar height (to be removed for auto height)
"spacing": 4, // Gaps between modules (4px)
"mode": "dock",
"margin": 10, // float the bar off the edges of the screen
// Choose the order of the modules
"modules-left": [
"sway/workspaces",
],
"modules-center": [
"clock",
],
"modules-right": [
"network",
"battery",
"backlight",
"pulseaudio",
"tray"
],
"tray": {
// "icon-size": 21,
"spacing": 10
},
"sway/workspaces": {
"format": "{icon}",
"format-icons" : {
"1": "󰈹",
"2": "",
"3": "",
"4": "󰎆",
"5": "󰓥",
"urgent": "",
"active": "",
"default": ""
},
"sort-by-number": true,
"persistent-workspaces": {
"1": [ "HDMI-A-1" ],
"2": [ "HDMI-A-1" ],
"3": [ "DP-1" ]
}
},
"clock": {
// "timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%m-%d-%Y}"
},
"cpu": {
"format": "{usage}% ",
"tooltip": false
},
"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-full": "{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": {
// "interface": "wlp2*", // (Optional) To force the use of this interface
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ipaddr}/{cidr} ",
"tooltip-format": "{ifname} via {gwaddr} ",
"format-linked": "{ifname} (No IP) ",
"format-disconnected": "Disconnected ⚠",
"format-alt": "{ifname}: {ipaddr}/{cidr}"
},
"pulseaudio": {
// "scroll-step": 1, // %, can be a float
"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": "",
"format-icons": {
"headphone": "",
"hands-free": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", ""]
},
"on-click": "pavucontrol"
}
}