index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel <blackrabbit256@gmail.com> | 2022-04-22 21:24:43 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 13:24:43 +0200 |
commit | bbedc0bb19a75b937b49001e8845c6b73bccb25b (patch) | |
tree | cbb7fef3be7e45362b11cb1c228a6a8b33c02e90 /examples/guided.py | |
parent | 477b5b120e120766d789a691fce60cec843aff43 (diff) |
-rw-r--r-- | examples/guided.py | 9 |
diff --git a/examples/guided.py b/examples/guided.py index 56e05ef9..8e6acc64 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -39,6 +39,9 @@ def ask_user_questions(): archinstall.SysCommand('timedatectl set-ntp true') global_menu = archinstall.GlobalMenu(data_store=archinstall.arguments) + + global_menu.enable('archinstall-language') + global_menu.enable('keyboard-layout') # Set which region to download packages from during the installation @@ -91,6 +94,12 @@ def ask_user_questions(): global_menu.enable('additional-repositories') + global_menu.enable('__separator__') + + global_menu.enable('save_config') + global_menu.enable('install') + global_menu.enable('abort') + global_menu.run() |