Iain Kerr | 6 May 23:30

Customizing Gnome on Macosx

I recently installed Gnome 2.14.0 via fink under Mac OSX (Tiger). I've 
used gnome for many years under various Linux distros. My .xinitrc looks 
like this:

# $Id: xinitrc,v 1.3 2004/06/11 04:37:23 jharper Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f "$sysresources" ]; then
    xrdb -merge "$sysresources"
fi

if [ -f "$sysmodmap" ]; then
    xmodmap "$sysmodmap"
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start the window manager
quartz-wm --only-proxy &
(Continue reading)

Iain Kerr | 7 May 22:34

Re: Customizing Gnome on Macosx

I went back and checked I have all the Gnome components installed..looks 
like I do..

My feeling is that there's something I need to change in Gconf-editor to 
make the gnome-menu items appear and see programs in the applications 
menu, but I can't find it..

Any ideas ?

Thanks,
Iain

Iain Kerr wrote:
> I recently installed Gnome 2.14.0 via fink under Mac OSX (Tiger). I've 
> used gnome for many years under various Linux distros. My .xinitrc 
> looks like this:
>
> # $Id: xinitrc,v 1.3 2004/06/11 04:37:23 jharper Exp $
> userresources=$HOME/.Xresources
> usermodmap=$HOME/.Xmodmap
> sysresources=/etc/X11/xinit/.Xresources
> sysmodmap=/etc/X11/xinit/.Xmodmap
>
> # merge in defaults and keymaps
>
> if [ -f "$sysresources" ]; then
>    xrdb -merge "$sysresources"
> fi
>
> if [ -f "$sysmodmap" ]; then
(Continue reading)


Gmane