From 34e87b13accfba16cd8a145e513f225de7fd86fc Mon Sep 17 00:00:00 2001 From: edl2 <95947898+edl2@users.noreply.github.com> Date: Sun, 30 Jan 2022 22:06:36 -0500 Subject: [PATCH] Removed xorg requirement --- profiles/qtile.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/profiles/qtile.py b/profiles/qtile.py index bdd6adda..0e80cd53 100644 --- a/profiles/qtile.py +++ b/profiles/qtile.py @@ -12,8 +12,6 @@ __packages__ = [ 'lightdm-gtk-greeter', 'lightdm', 'dmenu' - - ] @@ -25,17 +23,6 @@ def _prep_function(*args, **kwargs): for more input before any other installer steps start. """ - - - # qtile requires a functioning Xorg installation. - profile = archinstall.Profile(None, 'xorg') - with profile.load_instructions(namespace='xorg.py') as imported: - if hasattr(imported, '_prep_function'): - return imported._prep_function() - else: - print('Deprecated (??): xorg profile has no _prep_function() anymore') - - if __name__ == 'qtile':