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:
authorAnton Hvornum <anton@hvornum.se>2021-04-05 16:21:43 +0000
committerGitHub <noreply@github.com>2021-04-05 16:21:43 +0000
commitdc522b74b92cac38446501b8bb4fefc006ffda32 (patch)
tree467a4dc7a2e820d8c47298a323a904eb9ddfd30e /examples/guided.py
parent9959e0a29978616fa1f5a1bbaf2441f3180766b4 (diff)
parent9404dbe967beaa060101c4d53758ee308f754740 (diff)
Merge pull request #179 from advaithm/master
i3 and 13-gaps support
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py8
1 files changed, 6 insertions, 2 deletions
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