Manjaro-system: Wrongly enabling os-prober when its variable is non boolean

Well, you can avoid it by putting in an extra line, any of the 3 versions will do.

#GRUB_DISABLE_OS_PROBER=false

GRUB_DISABLE_OS_PROBER="$(
	if [[ -n "${MULTIPLE_OSES}" ]]; then
		echo "false"
	else
		echo "true"
	fi
)"
1 Like

I will do that, thanks.

Nevertheless this is better changed too.

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.