From 740c8bb35617089451352b4a13b41b3555e2b0ca Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 16 Apr 2017 04:16:54 +0200
Subject: [PATCH] In wicd-curses wrapper, start wifi if necessary.

---
 bin/wicd-wrapper.sh | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/bin/wicd-wrapper.sh b/bin/wicd-wrapper.sh
index 986343a..8ed74bd 100755
--- a/bin/wicd-wrapper.sh
+++ b/bin/wicd-wrapper.sh
@@ -7,6 +7,12 @@ check_wifi_id_set() {
   fi
 }
 
+ensure_wifi_on() {
+  if [ ! "$(wifi)" = "wifi      = on" ]; then
+    sudo wifi on
+  fi
+}
+
 print_usage() {
   echo 'Available commands:'
   echo '  eth_connect'
@@ -29,6 +35,7 @@ elif [ "${1}" = 'eth_disconnect' ]; then
   wicd-cli --wired --disconnect
 
 elif [ "${1}" = 'wifi_scan' ]; then
+  ensure_wifi_on
   wicd-cli --wireless --scan
   wicd-cli --wireless --list-networks
 
@@ -46,6 +53,7 @@ elif [ "${1}" = 'wifi_set_wpa' ]; then
   wicd-cli --wireless --network="${2}" --network-property=key --set-to="${3}"
 
 elif [ "${1}" = 'wifi_connect' ]; then
+  ensure_wifi_on
   check_wifi_id_set "${2}"
   wicd-cli --wireless --network="${2}" --connect
 
-- 
2.30.2