Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.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-09 11:46:24 -0400
commitb803c281ea98f71842c7598e428832eaf4a24584 (patch)
tree6013e70e00d939f7ebc99d5cfd41ce48aae3512b /examples/guided.py
parent9a6c0e7a41c597d7188c3028a1baaac8f4aa64a9 (diff)
Move choice into guided installation instead of DEs
Arch wiki says packages should enable the user services automatically
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 6feebd00..77b64450 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -160,6 +160,10 @@ def ask_user_questions():
)
exit(1)
+ # Ask about audio server selection (this right now just asks for pipewire and defaults to pulseaudio otherwise)
+ if not archinstall.arguments.get('audio', None):
+ archinstall.arguments['audio'] = archinstall.ask_for_audio_selection()
+
# Additional packages (with some light weight error handling for invalid package names)
if not archinstall.arguments.get('packages', None):
print("Packages not part of the desktop environment are not installed by default.")
@@ -278,7 +282,11 @@ def perform_installation(device, boot_partition, language, mirrors):
installation.enable_service('systemd-networkd')
installation.enable_service('systemd-resolved')
-
+ print('This audio server will be used: ' + archinstall.arguments.get('audio', None))
+ if archinstall.arguments.get('audio', None) == 'pipewire':
+ print('Installing pipewire ...')
+ installation.install_profile('pipewire')
+
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
installation.add_additional_packages(archinstall.arguments.get('packages', None))