Hi German,
Thank you for the response. But it did not solve the problem.
I tried these step :
1. Adding 'make_services' in my .xsession
2. Running 'make_services' from Terminal inside the X session.
None of those could achieve to get the apps running.
I join my .xession. Maybe something is wrong in the order of things.
Le 16/05/20 à 20:32, Germán Arias a écrit :
> Hi,
>
> You should run the tool "make_services" after sourced GNUstep.sh in your
> .xsession script. And you should run this tool after install a new
> GNUstep app.
>
> Germán
>
> On 5/16/20 7:16 PM, Patrick Cardona via Discussion list for the GNUstep
> programming environment wrote:
> > Hi All,
> >
> > I just installed a new fresh GNUstep environment with WindowMaker.
> > My context is : raspbian Buster (10.4). Theme is default gnustep.
> > I have sourced GNUstep.sh in my .xsession home script and I use wdm to the
> > X login with wmaker session.
> >
> > GWorkspace (0.9.4) has a strange behaviour :
> >
> > When I start an app with 'openapp' tool or as a 'service', it does it well
> > (Terminal.app, Cynthiune, etc).
> > But when I attempt to load an app from a view (double click on the icon,
> > or menu: 'file / open' or '#o') I get an error message and the app don't
> > load.
> >
> > Thank You for your kind attention.
> >
>
--
Bien cordialement,
Patrick CARDONA
#!/usr/bin/bash
# GSXBoot.sh
# (c) 2003 Dennis Leeuw
# License: GPL version 2 or any newer version
#
# If GNUstep is not installed in the default place (/usr/GNUstep)
# set this variable to the GNUstep Makefile directory
# e.g. /usr/GNUstep/System/Library/Makefiles
GNUSTEP_MAKEFILES=/usr/share/GNUstep/Makefiles
# Make sure GNUSTEP_MAKEFILES is set to something
if [ "x$GNUSTEP_MAKEFILES" = "x" ]; then
if [ -d /usr/GNUstep/System/Library/Makefiles ]; then
GNUSTEP_MAKEFILES="/usr/GNUstep/System/Library/Makefiles"
else
echo "GNUstep is not installed"
exit 1
fi
fi
# Make sure GNUSTEP_MAKEFILES contains GNUstep.sh
# And source if available
if [ -x $GNUSTEP_MAKEFILES/GNUstep.sh ]; then
. $GNUSTEP_MAKEFILES/GNUstep.sh
else
echo "GNUstep.sh not found in $GNUSTEP_MAKEFILES"
exit 1
fi
# Start the services
/usr/bin/gdnc
/usr/bin/gpbs
make_services
exec /usr/bin/wmaker