From 72d02a391dd1f2aedaeaac59b943d8655366bb3e Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Tue, 23 Nov 2021 15:10:21 -0500 Subject: Add accessibility packages to installed system if using the on the live ISO (#760) * Add group of accesibility tools * Conditionally extend base packages * Enable it if accessibility in use in guided * Fix circular import --- examples/guided.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'examples/guided.py') diff --git a/examples/guided.py b/examples/guided.py index 1ee31d38..e58fd56b 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -334,6 +334,9 @@ def perform_installation(mountpoint): if archinstall.arguments.get('ntp', False): installation.activate_time_syncronization() + if installation.accessibility_tools_in_use(): + installation.enable_espeakup() + if (root_pw := archinstall.arguments.get('!root-password', None)) and len(root_pw): installation.user_set_pw('root', root_pw) -- cgit v1.2.3-54-g00ecf