Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/i3-gaps.py
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/i3-gaps.py')
-rw-r--r--profiles/i3-gaps.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/profiles/i3-gaps.py b/profiles/i3-gaps.py
index bf8227ba..d9469dcd 100644
--- a/profiles/i3-gaps.py
+++ b/profiles/i3-gaps.py
@@ -1,4 +1,4 @@
-import archinstall
+import archinstall, subprocess
def _prep_function(*args, **kwargs):
"""
@@ -16,6 +16,14 @@ def _prep_function(*args, **kwargs):
else:
print('Deprecated (??): xorg profile has no _prep_function() anymore')
+def _post_install(*args, **kwargs):
+ """
+ Another magic function called after the system
+ has been installed.
+ """
+ print("the installation of i3 does not conatain any configuerations for the wm. in this shell you take your time should add your configuerations")
+ subprocess.check_call("arch-chroot /mnt",shell=True)
+
if __name__ == 'i3-wm':
# Install dependency profiles
installation.install_profile('xorg')