Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-05 20:58:38 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-05 20:58:38 +0530
commit463d1b5fd37db1435f15987929963ee2f2c2dc02 (patch)
tree82e20953611927792b2750e4afe8006ee31bb2ec /examples/guided.py
parente2a6a85d66ef0d43c5bb941d9ec945c854f45849 (diff)
add shell drop for i3 and i3-gaps
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 1a1cf84c..74db0ce5 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -344,7 +344,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")
+ installation.arch_chroot("bash")
ask_user_questions()
perform_installation_steps()
+
+ \ No newline at end of file