← Back to team overview

gnomenu-team team mailing list archive

OAFIID work around found

 

Being the I refuse to give up kind of guy I am I have found a solution
for the OAFIID error that works for me.

I made a startup script that loads GnoMenu when the system starts:

#!/bin/sh
# Trying a GnoMenu startup to clear OAFIID

case "$1" in
'start')
	GnoMenu.py
	;;
'stop')
	;;
*)
	echo "Usage: $0 { start | stop }"
	;;
esac
exit 0

This has the Python triggers that GnoMenu uses up and running when you
login to the users Xsession.

Admittedly this is a very dirty work around but it does work.