index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-05 16:21:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 16:21:43 +0000 |
commit | dc522b74b92cac38446501b8bb4fefc006ffda32 (patch) | |
tree | 467a4dc7a2e820d8c47298a323a904eb9ddfd30e /examples/guided.py | |
parent | 9959e0a29978616fa1f5a1bbaf2441f3180766b4 (diff) | |
parent | 9404dbe967beaa060101c4d53758ee308f754740 (diff) |
-rw-r--r-- | examples/guided.py | 8 |
diff --git a/examples/guided.py b/examples/guided.py index eba6e142..e58228fd 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -1,4 +1,4 @@ -import getpass, time, json, sys, signal, os +import getpass, time, json, sys, signal, os, subprocess import archinstall from archinstall.lib.hardware import hasUEFI @@ -347,7 +347,11 @@ def perform_installation(device, boot_partition, language, mirrors): if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw): installation.user_set_pw('root', root_pw) - + if archinstall.arguments.get('profile', None) == "i3-wm" or archinstall.arguments.get('profile', None) == "i3-gaps": + print("the installation of i3/i3-gaps does not conatain any configuerations for the wm. in this shell you should add your configuerations") + subprocess.check_call("arch-chroot /mnt") ask_user_questions() perform_installation_steps() + +
\ No newline at end of file |