diff --git a/wifi b/wifi index 4a5bb95..fbb4f89 100755 --- a/wifi +++ b/wifi @@ -47,11 +47,13 @@ __kill_old() { __connect_config() { if [ -z "$debug_kill" ] then - if [ ! -f "$1" ]; then echo Config not found\ - exit 0;fi + if [ ! -f "$1" ]; then + echo Config not found + exit 0 + fi __kill_old - wpa_supplicant -B -i wlp1s0 -c "$1" - dhclient wlp1s0 + wpa_supplicant -B -i $iface -c "$1" + dhclient $iface else echo Not connecting to anything fi