~ubuntu-desktop/gnome-session/ubuntu

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: chrisccoulson at googlemail
  • Date: 2009-03-03 20:30:59 UTC
  • Revision ID: chrisccoulson@googlemail.com-20090303203059-hyfc1qt1wccyqsf3
Initial gnome-session import

Show diffs side-by-side

added added

removed removed

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