#!/bin/sh

# Run connman if no connection, not run in background so after you quit it exits the script, add & to stay running
connected_addr=$(ip addr | grep "inet " | sed '/ scope host /d')
if [ -z "$connected_addr" ]; then
   connman-gtk
fi
