index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2021-04-07 09:29:50 +0200 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-09 11:46:59 -0400 |
commit | 9312076cfe552922aeed68f6c83e4a92775683a2 (patch) | |
tree | f328cecddcf2ee4ff17c163553f8fe0d2dc60d25 | |
parent | dbea18dab868dd4e32a2e72628dcb75a159f87a9 (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 2 |
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py index 8062f6e3..96a76e9e 100644 --- a/archinstall/lib/user_interaction.py +++ b/archinstall/lib/user_interaction.py @@ -142,7 +142,7 @@ def ask_for_a_timezone(): def ask_for_audio_selection(): audio = "pulseaudio" # Default for most desktop environments - pipewire_choice = input("Would you like to install the pipewire audio server? [Y/n] ").lower() + pipewire_choice = input("Would you like to install pipewire instead of pulseaudio as the default audio server? [Y/n] ").lower() if pipewire_choice == "y": audio = "pipewire" |