LibreOffice detecting opened Help window

Hi KamilLanda

(Solved :slightly_smiling_face: )

The main issue is to prevent the Help window from opening.
On RHEL7 - LibreOffice7.6 is the running version (I didn’t find higher :slightly_smiling_face:) opens Help using the konqueror utility (which can’t be disabled), so yum remove konqueror, and then in the same way as on RHEL9.
On RHEL9 - LibreOffice24.2 (as you advised) Help is opened using the default browser (firefox/google-chrome).
To prevent browser from opening the Help url, I’ve just added the following lines to /usr/bin/firefox or /usr/bin/google-chrome:

url="$@"
help="help.libreoffice"
if [[ "$url" == *"$help"* ]]; then
	echo "It's Help URL, exiting ..."
	exit
fi

Thanks again for the advice :slight_smile: