Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/kde.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-06 22:18:44 -0400
commit9436ca780586334ad7661a0c606eb95a8353bab3 (patch)
tree7ee026cd9efd8f39ef576d9996c923c007d950dc /profiles/kde.py
parent39e354f3952e0e0fd1a0c5505640b697eea99c21 (diff)
Begin implementing PipeWire option
Diffstat (limited to 'profiles/kde.py')
-rw-r--r--profiles/kde.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/profiles/kde.py b/profiles/kde.py
index 0207ed22..dabba57b 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -32,6 +32,12 @@ def _post_install(*args, **kwargs):
# through importlib.util.spec_from_file_location("kde", "/somewhere/kde.py")
# or through conventional import kde
if __name__ == 'kde':
+ # 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')