Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-06-02 21:23:56 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-06-02 21:23:56 -0400
commit5f4a24d5cc0ebfdb48898b677fe1a9f3a5c93d05 (patch)
tree99afbc2c0737d17653e42a526b9a45f85e463cd1
parente90b17ca1cab9287529eac7576c4e031d18a1f04 (diff)
Add graphics device listing
-rw-r--r--examples/guided.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/guided.py b/examples/guided.py
index a842e6ff..18b2e768 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -21,6 +21,7 @@ archinstall.log(f"Hardware model detected: {archinstall.sys_vendor()} {archinsta
archinstall.log(f"Processor model detected: {archinstall.cpu_model()}", level=logging.DEBUG)
archinstall.log(f"Memory statistics: {archinstall.mem_available()} available out of {archinstall.mem_total()} total installed", level=logging.DEBUG)
archinstall.log(f"Virtualization detected: {archinstall.virtualization()}; is VM: {archinstall.is_vm()}", level=logging.DEBUG)
+archinstall.log(f"Graphics devices detected: {archinstall.graphics_devices()}", level=logging.DEBUG)
# For support reasons, we'll log the disk layout pre installation to match against post-installation layout
archinstall.log(f"Disk states before installing: {archinstall.disk_layouts()}", level=logging.DEBUG)