// vim: set ft=jsonc :
{
  "layer": "top", // Waybar at top layer
  "position": "top", // Waybar position (top|bottom|left|right)
    // "height": 30, // Waybar height (to be removed for auto height)
    "margin": "3 3 0 3",
    // "width": 1280, // Waybar width
    // "spacing": 1, // Gaps between modules (4px)
    // Choose the order of the modules
    // "modules-left": ["wlr/workspaces", "custom/sep", "hyprland/window", "hyprland/submap"],
    "modules-left": ["sway/workspaces", "custom/sep", "sway/window", "sway/mode"],
    "modules-center": ["clock"],
    "modules-right": [
      "idle_inhibitor",
      "custom/sep",
      "network",
      "custom/sep",
      "bluetooth",
      "custom/sep",
      "custom/pipewire",
      "cpu",
      "memory",
      "backlight",
      "battery",
      "custom/sep",
      "tray"
    ],
    // Modules configuration
    "custom/sep": {
      "format": "|",
      "interval": "once",
      "tooltip": false
    },
    "wlr/workspaces": {
      "format": "{name}",
      // "on-click": "activate",
      "disable-scroll": true
    },
    "sway/window": {
      "max-length": 100
    },
    "custom/pipewire": {
      "exec": "/home/jay/bin/get-volume.sh",
      "interval": 2,
      "return-type": "json",
      "signal": 8,
      "format": "{icon} {percentage}%",
      "format-icons": {
        "mute": "",
        "default": ["", "", ""]
      },
      "on-click": "pavucontrol"
    },
    "hyprland/window": {
      "max-length": 30
    },
    "hyprland/submap": {
      "format": "{}",
      "tooltip": false
    },
    "idle_inhibitor": {
      "format": "{icon}",
      "format-icons": {
        "activated": "",
        "deactivated": ""
      }
    },
    "tray": {
        // "icon-size": 21,
        "spacing": 10,
        "show-passive-items": true
    },
    "clock": {
        // "timezone": "America/New_York",
        "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
        "format": "{:%Y-%m-%d %H:%M:%S %a}",
        "format-alt": "{:%Y-%m-%d}",
        "interval": 1
    },
    "cpu": {
      "format": " {usage}%({load})",
      "interval": 2,
      "tooltip": false
    },
    "memory": {
      "interval": 10,
      "format": " {used}G",
      "tooltip-format": "{percentage}% used"
    },
    "temperature": {
        // "thermal-zone": 2,
        "hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input",
        "critical-threshold": 80,
        // "format-critical": "{temperatureC}°C {icon}",
        "format": " {temperatureC}°C",
        "format-icons": ["", "", ""]
    },
    "backlight": {
        // "device": "acpi_video1",
        "format": "{icon} {percent}%",
        "format-icons": ["", "", "", "", "", "", "", "", ""]
    },
    "battery": {
      "states": {
            // "good": 95,
            "warning": 30,
            "critical": 15
      },
      "format": "{icon}  {capacity}%",
      "format-charging": "󰂄  {capacity}%",
      "format-plugged": "  {capacity}%",
      "format-alt": "{icon}  {time}",
        // "format-good": "", // An empty format will hide the module
        // "format-full": "",
        "format-icons": ["", "", "", "", ""]
    },
    "battery#bat2": {
      "bat": "BAT2"
    },
    "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}"
    }
}

