Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-04-08 21:20:00 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-08 21:20:00 -0400
commit7e161d187ced4275365cb958d8f066b697bcc141 (patch)
treefcb01a35147f11f3189b5c6938ccc9f9cf9c715e /profiles
parent6a6439daa929e534fec580a39cbd69087f5f43f2 (diff)
Remove post-install hooks from i3 profiles
Diffstat (limited to 'profiles')
-rw-r--r--profiles/i3-gaps.py13
-rw-r--r--profiles/i3-wm.py13
2 files changed, 0 insertions, 26 deletions
diff --git a/profiles/i3-gaps.py b/profiles/i3-gaps.py
index d6308ad5..395e69f6 100644
--- a/profiles/i3-gaps.py
+++ b/profiles/i3-gaps.py
@@ -18,19 +18,6 @@ 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.
- """
- installation.log("the installation of i3 does not conatain any configuerations for the wm. In this shell you should take your time to add your desiired configueration. Exit the shell once you are done to continue the installation.", fg="yellow")
- try:
- subprocess.check_call("arch-chroot /mnt",shell=True)
- except subprocess.CallProcessError:
- return False
-
- return True
-
if __name__ == 'i3-gaps':
# install the i3 group now
i3 = archinstall.Application(installation, 'i3-gaps')
diff --git a/profiles/i3-wm.py b/profiles/i3-wm.py
index c4c05ec9..4c3135e5 100644
--- a/profiles/i3-wm.py
+++ b/profiles/i3-wm.py
@@ -18,19 +18,6 @@ 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.
- """
- installation.log("the installation of i3 does not conatain any configuerations for the wm. In this shell you should take your time to add your desiired configueration. Exit the shell once you are done to continue the installation.", fg="yellow")
- try:
- subprocess.check_call("arch-chroot /mnt",shell=True)
- except subprocess.CallProcessError:
- return False
-
- return True
-
if __name__ == 'i3-wm':
# install the i3 group now
i3 = archinstall.Application(installation, 'i3-wm')