View Single Post
  #5   (View Single Post)  
Old 25th November 2022
gordon.f gordon.f is offline
Fdisk Soldier
 
Join Date: Oct 2021
Location: Europe
Posts: 60
Default

Dear jggimi;

It says
Quote:
# Apply configuration settings based on the previously gathered information.
So I checked the previous pages of the link you've provided and there is a section related to $START_XDM variable. See below.
Code:
START_XDM=
	if [[ -n $(scan_dmesg '/^wsdisplay[0-9]* /s/ .*//p') ]]; then
		if [[ -n $(scan_dmesg '/^[a-z]*[01]: aperture needed/p') ]]; then
			ask_yn "Do you expect to run the X Window System?" yes &&
				APERTURE=$MDXAPERTURE
		fi
		if [[ -n $MDXDM && $resp != n ]]; then
			ask_yn "Do you want the X Window System to be started by xenodm(1)?"
			START_XDM=$resp
		fi
	fi
So I chose 'n' and just because of this code below
Code:
[[ $START_XDM == y && -x /mnt/usr/X11R6/bin/xenodm ]] &&
		echo "xenodm_flags=" >>/mnt/etc/rc.conf.local
I didn't get an rc.conf.local file. $START_XDM has to be equal to 'y', hasn't it?

What a script!
Reply With Quote