index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-28 12:14:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 12:14:26 +0000 |
commit | 2017d9a5f3077b64b80f2d3780dd0d8be5cda840 (patch) | |
tree | f2700b9ec38c04df633798cbd2df3ff370b6055e | |
parent | 153495a4c0670db3dd49456b19579f557da82915 (diff) | |
parent | 3961f252c87e3811561e845a9689007d17e3628e (diff) |
-rw-r--r-- | profiles/sway.py | 5 |
diff --git a/profiles/sway.py b/profiles/sway.py index f132df33..c3a6e31a 100644 --- a/profiles/sway.py +++ b/profiles/sway.py @@ -12,7 +12,10 @@ def _prep_function(*args, **kwargs): for more input before any other installer steps start. """ if "nvidia" in _gfx_driver_packages: - raise archinstall.lib.exceptions.HardwareIncompatibilityError("Sway does not support the proprietary nvidia drivers") + choice = input("The proprietary Nvidia driver is not supported by Sway. It is likely that you will run into issues. Continue anyways? [y/N] ") + if choice.lower() in ("n", ""): + raise archinstall.lib.exceptions.HardwareIncompatibilityError("Sway does not support the proprietary nvidia drivers.") + __builtins__['_gfx_driver_packages'] = archinstall.select_driver() return True |