Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/gnome.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-06 18:04:03 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-06 22:19:41 -0400
commitd9984550b6ad4f4e7d659adb32cef541e85d69d9 (patch)
treefff569422d7cd3c45bc75887eb13f7228ccca313 /profiles/gnome.py
parent9436ca780586334ad7661a0c606eb95a8353bab3 (diff)
Move choice into guided installation instead of DEs
Arch wiki says packages should enable the user services automatically
Diffstat (limited to 'profiles/gnome.py')
-rw-r--r--profiles/gnome.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/profiles/gnome.py b/profiles/gnome.py
index d13e6eee..63fcd57d 100644
--- a/profiles/gnome.py
+++ b/profiles/gnome.py
@@ -23,12 +23,6 @@ def _prep_function(*args, **kwargs):
# through importlib.util.spec_from_file_location("gnome", "/somewhere/gnome.py")
# or through conventional import gnome
if __name__ == 'gnome':
- # Install the pipewire audio server if the user wants to use it
- pipewire_choice = input("Would you like to install the pipewire audio server? [Y/n] ").lower()
- if choice == "y":
- pipewire = archinstall.Application(installation, 'pipewire')
- pipewire.install()
-
# Install dependency profiles
installation.install_profile('xorg')