#!/bin/sh

echo -n "^c#a89984^"
case $(hostname -s) in
	mother|po-rbo) ping="ping -c1 -w1 9.9.9.9" ;;
	mars)          ping="ping -c1 -t1 9.9.9.9" ;;
esac
ifc=$(ifconfig)
if echo "$ifc" | grep -E '^wg' >/dev/null 2>&1; then
	echo -n "󰞀  "
fi
if echo "${ifc}" | grep -E '^zt' >/dev/null 2>&1; then
	echo -n "  "
fi
if echo "${ifc}" | grep -E '^tun|^vpn' >/dev/null 2>&1; then
	echo -n "󰖂  "
fi
if ! $ping >/dev/null 2>&1; then
	echo "󰲜"
	exit
fi

echo "󰲝"