#!/bin/bash # SPDX-License-Identifier: Apache-2.0 # Copyright (C) 2020 Fewtarius (https://github.com/fewtarius) . /etc/profile COMMAND="$1" SSID="$(get_setting wifi.ssid)" 2>/dev/null PSK="$(get_setting wifi.key)" 2>/dev/null WIFICFG="/storage/.cache/connman/wifi.config" set_wifi() { case "${1}" in "enable") set_setting wifi.enabled 1 # Create the WIFI config. cat > "${WIFICFG}" </dev/null connmanctl scan wifi 2>/dev/null ;; "disable") connmanctl disable wifi 2>/dev/null rm -f "${WIFICFG}" 2>/dev/null set_setting wifi.enabled 0 ;; "list") connmanctl services | cut -b 5- | sed -e s+'^\([^ ]*\).*$'+'\1'+ | grep -vE '^Wired$|^$' 2>/dev/null ;; "scan") connmanctl scan 2>/dev/null ;; "scanlist") set_wifi scan 2>/dev/null set_wifi list 2>/dev/null ;; esac } if [ ! -d "" ] then mkdir -p "/storage/.cache/connman" fi set_wifi ${COMMAND}