Happy new year  

 . Really looking forward to your updates  

What "channel" is the best for giving testing feedback ?  This thread here, your github-repo or the 'new' gitlab repo ?  
Test-Setup (see attached picture)- Board: Asrock a320m-hdv
 - CPU: AMD Ryzen 5 2400G (integrated AMD Radeon Vega 11) 
 - Graphic:  1x 2GB Sapphire Radeon R5 230 PCIe, using VGA-Out, 1x HD6450 1GB PCIe, using DVI2VGA-Adapter
 - HDD:  970 EVO Plus NVMe M.2 SSD, 250GB 
 - Monitors:   Computer CRTs  +  several arcade monitors (Hantarex, WellsGardner etc.)
 
Test1 / Script Autoconfiguration: : Just used a SVGA-CRT on VGA of PCIe-R230, selected SVGA/LCD. Result see attached picture. (Connector war detected, video card doesnt support EDID, no monitor detected). The same with the HD6450 with DVI2VGA-Adapter.
Is there a shortcut I can use too see the output to tty1 'behind' the graphical menu ? Itīs not tty7 (Edited: Oh well, I can parse /var/log/groovy.log 

 ) 
Test2 / GA-Installer on NVMe SSD: :  Autoformat /dev/nvme0n1 doesnīt work. Partitions are created but I guess the root partition (e.g /dev/ nvme0n1p3) is not formatted correctly. When I repeat the setup, use the auto applied partition layout from the last step and install to root partition (/dev/ nvme0n1p3) manually, arch is installating correctly and I can boot from HDD.  What script is called here? In what logfile can I see the output (or again, is there a shortcut to see the output on tty1? ). The Installer says itīs copying the files to /dev/nvme0n13 instead of  /dev/nvme0n1p3 - so I guess itīs just a parsing error of the script  

 )
-------------------------------------------------------------
(Edited: I'm no developer, but I got this far: 
grep -rnw '/' -e 'Copying Groovy'
nano /opt/gasetup/core/procedures/interactive
--> worker_auto_partition()
--> line: mkfs.ext4 -F -O ^64bit -q ${DEVICE}${ROOTNUM}which leads to /dev/nvme0n13 
How about ?:ROOTPART=$(fdisk -l ${DEVICE} | awk '{print $1}' | grep ${ROOTNUM})
mkfs.ext4 -F -O ^64bit -q ${ROOTPART}
which would lead to /dev/nvme0n1p3 
-------------------------------------------------------------