
{
    //GLOBAL


    "layer": "top",

    "position": "right", // or "left"
    "width": 100,

    "modules-left": [
        "clock#time",
        "clock#date",
    	"battery",
	"custom/terminal",
        "sway/workspaces"
    ],
  
    "modules-center": [
    ],

    "modules-right": [
        "cpu",
	"memory",
//        "disk",
        "network",
    	"backlight",
	"pulseaudio",
    	"custom/kill",
        "tray"
    ],

//MODULES

    "clock#time": {
        "interval": 10,
	"locale": "C",
	"timezone": "Europe/Berlin",
        "format": " {:%H:%M}",
        "tooltip": false,
	"on-click": "termite -e swayphone_menuselect"
    },


    "clock#date": {
        "interval": 20,
	"locale": "C",
	"timezone": "Europe/Berlin",
        "format": " {:%e %b %Y}", // Icon: calendar-alt
        //"tooltip-format": "{:%e %B %Y}"
        "tooltip": true,
	"on-click": "termite -e swayphone_menuselect"
    },

    "battery": {
        "interval": 1,
        "states": {
            "warning": 30,
            "critical": 15
        },
/*
        // Connected to AC
        "format": " {capacity}%", // Icon: bolt
        // Not connected to AC
        "format-discharging": " {capacity}%",
        "format-icons": [
            "", // Icon: battery-full
            "", // Icon: battery-three-quarters
            "", // Icon: battery-half
            "", // Icon: battery-quarter
            ""  // Icon: battery-empty
        ],
*/
	// Connected to AC
        "format": "CH {capacity}%", // Icon: bolt
        // Not connected to AC
        "format-discharging": "D {capacity}%",
        "format-icons": [
            "4/4", // Icon: battery-full
            "3/4", // Icon: battery-three-quarters
            "2/4", // Icon: battery-half
            "1/4", // Icon: battery-quarter
            "0/4"  // Icon: battery-empty
        ],

        "tooltip": false,
//	"bat": "axp20x-battery",
//	"adapter": "axp20x-usb",
	"on-click": "termite -e \"~/battery.sh ; sleep 5\""
    },


    "sway/mode": {
        "format": "<span style=\"italic\">  {}</span>",
        "tooltip": true
    },

    
    "sway/workspaces": {
        "all-outputs": false,
        "disable-scroll": true,
	"persistent_workspaces": {
		"1:STAT": [],
		"2:INV": [],
		"3:DATA": [],
		"4:MAP": [],
		"5:RADIO": []
	},
        "format": "{name}",
        "format-icons": {
            //"1:T": "", // Icon: terminal
            "3:F": "龜", // Icon: firefox-browser
            "8:M": "", // Icon: mail
            "urgent": "",
            "focused": "",
            "default": ""
        }
    },

    "custom/kill": {
	"on-click": "swaymsg kill",
	"format": "[KILL]"
    },

    "custom/terminal": {
	"on-click": "termite",
	"format": "[TERM]"
    },


    "cpu": {
        "interval": 5,
        "tooltip": false,
        "format": " {usage}%", //Icon: microchip
        "states": {
          "warning": 70,
          "critical": 90
        },
	"on-click": "termite -e \"htop --sort-key=PERCENT_CPU\""
    },

   
    "memory": {
        "interval": 5,
        "format": " {}%", // Icon: memory
        "states": {
            "warning": 70,
            "critical": 90
        },
	"on-click": "termite -e \"htop --sort-key=PERCENT_MEM\""
    },

    "network": {
        "interval": 5,
        "format-wifi": "  {essid}", // Icon: wifi
        "format-ethernet": "  {ifname}", // Icon: ethernet
        "format-disconnected": "Disconnected",
        "tooltip-format": "{ifname}: {ipaddr}",
	"on-click": "swaymsg exec \"termite -e nmtui\""
    },

    "pulseaudio": {
        "scroll-step": 1,
        "format": "{icon} {volume}%",
        "format-bluetooth": "{icon} {volume}%",
        "format-muted": "",
        "format-icons": {
            "headphones": "",
            "handsfree": "",
            "headset": "",
            "phone": "",
            "portable": "",
            "car": "",
            "default": ["", ""]
        },
        "on-click": "pavucontrol"
    },

    "disk": {
        "interval": 5,
        "format": " {percentage_used:2}%",
        "path": "/"
   
    },
      "backlight": {
        // "device": "acpi_video1",
        "format": "{icon} {percent}% ",
        "states": [0,50],
        "format-icons": ["", ""],
	"on-click": "termite -e swayphone_backlightselect"
    },
    "tray": {
        "icon-size": 22

        //"spacing": 10
    },

   
    "custom/bar": {
        "format": "",
        "tooltip": false
    }
}

