Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/xfce4.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-06 17:31:28 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-09 11:45:57 -0400
commit9a6c0e7a41c597d7188c3028a1baaac8f4aa64a9 (patch)
tree071320362601c82b5269ffecf65c7ac417a21c03 /profiles/xfce4.py
parent5543cb9eda975d1861052b70610c419e320379e0 (diff)
Begin implementing PipeWire option
Diffstat (limited to 'profiles/xfce4.py')
-rw-r--r--profiles/xfce4.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/profiles/xfce4.py b/profiles/xfce4.py
index fee8c37a..ae318317 100644
--- a/profiles/xfce4.py
+++ b/profiles/xfce4.py
@@ -25,6 +25,12 @@ def _prep_function(*args, **kwargs):
# through importlib.util.spec_from_file_location("xfce4", "/somewhere/xfce4.py")
# or through conventional import xfce4
if __name__ == 'xfce4':
+ # 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')