Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications/pipewire.py
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/applications/pipewire.py')
-rw-r--r--profiles/applications/pipewire.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/profiles/applications/pipewire.py b/profiles/applications/pipewire.py
new file mode 100644
index 00000000..38554000
--- /dev/null
+++ b/profiles/applications/pipewire.py
@@ -0,0 +1,14 @@
+import archinstall
+import logging
+
+# Define the package list in order for lib to source
+# which packages will be installed by this profile
+__packages__ = ["pipewire", "pipewire-alsa", "pipewire-jack", "pipewire-media-session", "pipewire-pulse", "gst-plugin-pipewire", "libpulse"]
+
+archinstall.log('Installing pipewire', level=logging.INFO)
+archinstall.storage['installation_session'].add_additional_packages(__packages__)
+
+@archinstall.plugin
+def on_user_created(installation :archinstall.Installer, user :str):
+ archinstall.log(f"Enabling pipewire-pulse for {user}", level=logging.INFO)
+ installation.chroot('systemctl enable --user pipewire-pulse.service', run_as=user) \ No newline at end of file