Prelim: Chain text mode to graphical mode setup

This commit is contained in:
Rory Fewell
2025-07-07 22:44:13 +01:00
parent ab2c2d8687
commit bb9ca70730

View File

@@ -432,9 +432,19 @@ def wsetup_step_prepare_chain_to_gui(stdscr):
]
)
stdscr.refresh()
# Arm graphical mode setup
#
# FIXME: Call into wsetupx
#
try:
subprocess.run(
[ "wsetupx", "--arm" ],
capture_output=True,
check=True
)
except:
# FIXME: Again, display a proper error in setup
raise Exception("Failed to chain graphical phase");
# Input
#