Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-06 13:03:42 -0400
committerGitHub <noreply@github.com>2021-04-06 13:03:42 -0400
commit6c3f46f6173cfb6dd2d895afc5e50aa1c9679988 (patch)
tree01d651ac341f44f6bd1dd7d2530728576d54a2ef
parent09abdec82b2a9450f40c91c11e9d6ac58dea7575 (diff)
Add a message about specifying a web browser
-rw-r--r--examples/guided.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/guided.py b/examples/guided.py
index a92343f7..9df8a518 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -181,6 +181,7 @@ def ask_user_questions():
exit(1)
# Additional packages (with some light weight error handling for invalid package names)
+ print("Packages not part of the desktop environment are not installed by default. If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
if not archinstall.arguments.get('packages', None):
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]