home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / gnome-session / README.Debian < prev    next >
Encoding:
Text File  |  2007-04-10  |  2.0 KB  |  57 lines

  1. gnome-session for DEBIAN
  2. --------------------------
  3.  
  4. Using startx/xinit
  5. ------------------
  6.  
  7. To use the gnome-session manager with startx or xinit, you need to edit your
  8. .xinitrc file.
  9.  
  10. The previous maintainers' .xinitrc file looked something like this:
  11.  
  12. ----------------------------------------------------------------------
  13. # This calls our default window-manager
  14. /usr/bin/x-window-manager&
  15. # You can replace the line above by seting a WINDOW_MANAGER environment
  16. # variable to set your preferred WM.
  17. export WINDOW_MANAGER=sawfish
  18. # This starts up GNOME
  19. exec /usr/bin/gnome-session
  20. ----------------------------------------------------------------------
  21.  
  22. Note:  If you don't have gnome-session set up at the end of your
  23.        .xinitrc where it does the "exec" (perhaps your window manager
  24.        is there) - you won't be able to use the session manager to
  25.        handle the logging out process (where it will save the state
  26.        of all your apps).
  27.  
  28. Jim Pick <jim@jimpick.com>, & James LewisMoss <dres@debian.org>,
  29.                                  Mon, 16 Mar 1998 15:27:43 -0800
  30.  
  31.  
  32. Splash Screen
  33. -------------
  34.  
  35. Debian's gnome-session uses a Debian-related splash screen instead of
  36. the original GNOME splash screen by default. You can change the the
  37. splash screen that should be used using the following gconf key:
  38.  
  39.   /apps/gnome-session/options/splash_image
  40.  
  41. This means that you can set your personal splash screen by using
  42. gconf-editor to edit the value of that key or you can issue the following 
  43. command:
  44.  
  45. $ gconftool-2  --type string --set /apps/gnome-session/options/splash_image \
  46. /usr/share/pixmaps/splash/gnome-splash.png
  47.  
  48. The last argument is GNOME's default splash screen. You can choose any
  49. image, of course. To set the system wide default do:
  50.  
  51. # gconftool-2 --direct \
  52. --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
  53. --type string --set /apps/gnome-session/options/splash_image \
  54. /usr/share/pixmaps/splash/gnome-splash.png
  55.  
  56. Gustavo Noronha Silva <kov@debian.org>, Sat, 19 Jun 2004 20:51:32 -0300
  57.