Skip to content

Commit 3da8b07

Browse files
committed
Added some cosmetic fixes to the Initial Setup Script.
1 parent 8e6a251 commit 3da8b07

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

initial_setup.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
def install_prereqs():
88
project_path = os.path.dirname(os.path.abspath(__file__))
99

10+
os.system('clear')
1011
os.system('apt update')
1112
os.system('clear')
1213
os.system('apt install python3 bundler libsqlite3-dev isc-dhcp-server hostapd libxml2-dev libxslt-dev -y')
@@ -83,9 +84,16 @@ def update_config_paths():
8384
print()
8485
sys.exit()
8586

87+
os.system('clear')
88+
print()
89+
print()
90+
print("#####################################")
91+
print("##### RaspiWiFi Setup Complete #####")
92+
print("#####################################")
8693
print()
8794
print()
88-
reboot_ans = input("Initial setup is complete. A reboot is required to start in WiFi configuration mode, would you like to do that now? (y/n): ")
95+
print("Initial setup is complete. A reboot is required to start in WiFi configuration mode...")
96+
reboot_ans = input("Would you like to do that now? (y/n): ")
8997

9098
if reboot_ans == 'y':
9199
os.system('sudo reboot')

0 commit comments

Comments
 (0)