I'd take a guess as to say that your installation doesn't have a monitor/xorg config under /etc/X11/xorg.conf.d/ and so xorg auto-configures. Then xorg fails at auto-configuring. You should make a monitor config or see if the install DVD has a monitor config you can copy/paste as this will bypass xorg auto-configuring.
This happens to me when I move my ssd between computers. I used to use manjaro's mhwd-gpu tool to ease my transition, make a config file, or fix my monitor, but I have no concrete way of switching my monitor configs for different drivers on Artix. EX: nouveau to intel,amdgpu, or ati. I'd appreciate if any one could tell me how.
I'll add an arch link for you to look at https://wiki.archlinux.org/index.php/xorg#Monitor_settings.
Edit:In case you don't find a monitor/xorg config on either your install or the booted DVD: I reinstalled mhwd to have it generate an xorg.conf for openchrome and copied it below. Put it under /etc/X11/xorg.conf.d/ and name it 10-openchrome.conf or xorg.conf. If you could list what you already have in that folder would help.
##
## Generated by mhwd - Manjaro Hardware Detection
##
Section "Device"
Identifier "Device0"
Driver "openchrome"
Option "DRI" "true"
EndSection
Section "DRI"
Group "video"
Mode 0666
EndSection
Section "Extensions"
Option "Composite" "Enable"
Option "RENDER" "Enable"
EndSection
Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
Hope that helps. If it still doesn't work add and modify the following I got from arch's xorg.conf example, so the resolution is defined. Make sure it is your screen's resolution.
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Screen"
Identifier "Screen0" #Collapse Monitor and Device section to Screen section
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24 #Choose the depth (16||24)
SubSection "Display"
Depth 24
Modes "1024x768_75.00" #Choose the resolution
EndSubSection
EndSection