|
@@ -1437,8 +1437,13 @@ function wifi_settings {
|
1437
|
1437
|
cp $TEMP_WIFI_NETWORKS_FILE $WIFI_NETWORKS_FILE
|
1438
|
1438
|
rm $TEMP_WIFI_NETWORKS_FILE
|
1439
|
1439
|
${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
|
1440
|
|
- dialog --title $"Wifi Settings" \
|
1441
|
|
- --msgbox $"Wifi settings were changed" 6 40
|
|
1440
|
+ if [[ $(wifi_is_running) == "1" ]]; then
|
|
1441
|
+ dialog --title $"Wifi Settings" \
|
|
1442
|
+ --msgbox $"Wifi settings were changed." 6 60
|
|
1443
|
+ else
|
|
1444
|
+ dialog --title $"Wifi Settings" \
|
|
1445
|
+ --msgbox $"Wifi settings were changed. You will need to restart the system for the changes to take effect." 6 60
|
|
1446
|
+ fi
|
1442
|
1447
|
fi
|
1443
|
1448
|
}
|
1444
|
1449
|
|