1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
|
<!DOCTYPE book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" []>
<book id="gdm">
<bookinfo>
<title>Gnome Display Manager Reference Manual</title>
<authorgroup>
<author>
<firstname>Martin</firstname><othername>K.</othername><surname>Petersen</surname>
<affiliation>
<address><email>mkp@mkp.net</email></address>
</affiliation>
</author>
</authorgroup>
<copyright>
<year>1998, 1999</year> <holder>Martin K. Petersen</holder>
</copyright>
<legalnotice>
<para>
This documentation is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
</para>
<para>
This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more details.
</para>
<para>
You should have received a copy of the GNU General Public
License along with this program; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA
</para>
<para>
For more details see the file COPYING in the source
distribution of GDM.
</para>
</legalnotice>
</bookinfo>
<toc></toc>
<preface>
<title>Terms and conventions used in this book</title>
<para>
GDM - Gnome Display Manager. Used to describe the software
package as a whole.
</para>
<para>
gdm - The Gnome Display Manager daemon (<filename /gdm/).
</para>
<para>
Greeter - The graphical login window (<filename /gdmlogin/).
</para>
<para>
Chooser - The host chooser which appears on remote displays
sending INDIRECT queries (<filename /gdmchooser/).
</para>
<para>
Paths without a leading '/' are relative to the installation
prefix. I.e. <filename>share/pixmaps/</filename> refer to
<filename>/usr/share/pixmaps</filename> if GDM was configured
with <filename>--prefix=/usr</filename>.
</para>
</preface>
<chapter id="intro">
<title>Introduction</title>
<para>
GDM is a replacement for XDM, the X Display Manager. Unlike its
competitors (X3DM, KDM, WDM) GDM was written from scratch and
does not contain any original XDM / X Consortium code.
</para>
<sect1 id="overview">
<title>Theory of Operation</title>
<para>
GDM was written with simplicity and security in mind. The
overall design concept is this:
</para>
<para>
Upon startup the <filename>gdm</filename> daemon parses its config file
<filename>gdm.conf</filename>. For each of the local displays gdm
forks an Xserver and a slave process. The main gdm process
will then listen to XDMCP requests from remote displays and
monitor the local display sessions.
</para>
<para>
The gdm slave process opens the display and starts
<filename>gdmlogin</filename>, the graphical login
program. <filename>gdmlogin</filename> runs as a dedicated
user and communicates asynchronously with the slave process
through a pipe.
</para>
<para>
GDM relies heavily on the presence of PAM, Pluggable
Authentication Modules, but supports regular crypt()
and shadow passwords.
</para>
</sect1>
</chapter>
<chapter id="Configuration">
<title>The Configuration Directory</title>
<para>
The configuration files for GDM are located in the
<filename>etc/gdm/</filename> directory.
</para>
<para>
This is a listing of the config directory contents:
</para>
<screen>
Init/
PostSession/
PreSession/
Sessions/
gdm.conf
</screen>
<para>
<filename>gdm.conf</filename> is the main GDM configuration file. The
options will be described later in this chapter.
</para>
<para>
The remaining configuration is done by dropping scripts in the
subdirectories of the <filename>etc/gdm</filename> folder. This
approach makes it easy for package management systems to install
window managers and different session types without requiring
the sysadmin/user to edit files.
</para>
<sect1>
<title>The Script Directories</title>
<para>
In this section we will explain the Init, PreRoot and PostRoot
directories as they are very similar.
</para>
<para>
When the X server has been successfully started, GDM will try
to run the script called Init/<displayname>. I.e. Init/:0 for
the first local display. If this file is not found, GDM will
attempt to to run Init/Default. The script will be run as root
and GDM blocks until it terminates. Use the Init/* script for
programs that are supposed to run alongside with the GDM login
window. xconsole for instance. Commands to set the background
etc. goes in this file too.
</para>
<para>
It is up to the sysadmin to decide whether clients started by
the Init script should be killed before starting the user
session. This is controlled with the KillInitClient option in
<filename>gdm.conf</filename>.
</para>
<para>
When the user has been successfully authenticated, GDM tries
to run the PreSession script. Similar to the Init-scripts,
PreSession/<displayname> will be executed first, if that is
not found GDM will attempt to run PreSession/Default. The
script will be run as root and GDM blocks until it
terminates. Use this script for local session management or
accounting stuff. The USER environment variable contains the
login of the authenticated user. The script should return 0 on
success. Any other value will cause GDM to terminate the
current login process.
</para>
<para>
Then the session script is run. Session scripts are located in
the <filename>etc/gdm/Session</filename> directory. Which one
GDM runs depends on the session the user chose in the
Sessions-menu in the GDM greeter. If no session is selected
and the user has no last session stored in his
<filename>~/.gnome/gdm</filename> file, the system will choose
or first script found or -- if
<filename>Sessions/Default</filename> exists -- this will be
run. For instance you can create a symlink from <filename>Gnome</filename> to <filename>Default</filename> to make Gnome the default
desktop environment.
</para>
<para>
When the user terminates his session the PostSession script
will be run. Operation is similar to Init and PreSession. That
is, GDM will attempt to execute the script
PostSession/<displayname> and if that doesn't exist:
PostSession/Default. Again the script will be run with root
priviledges, the slave daemon will block and the USER
environment variable will contain the name of the user who
just logged out.
</para>
<para>
Neither of the Init, PreSession or PostSession scripts are
necessary and can be left out. At least one session script is
required for proper operation.
</para>
</sect1>
<sect1>
<title>The Greeter</title>
<para>
foo foo
</para>
</sect1>
<sect1>
<title>The Configuration File - <filename>gdm.conf</filename></title>
<para>
The daemon and the accompanying utilities share a common
configuration file: <filename>etc/gdm/gdm.conf</filename>.
</para>
<para>
The configuration file is divided into sections each
containing variables that define the behaviour for a specific
part of the GDM suite.
</para>
<para>
<filename>gdm.conf</filename> follows the standard GNOME configuration
file syntax. Keywords in brackets define sections, strings
before an equal sign (=) are variables and the data after
equal sign represents their value.
</para>
<para>
In general, 0 represents disable and 1 represents enable for
boolean configuration options.
</para>
<sect2>
<title>Daemon Configuration</title>
<variablelist>
<title>[daemon]</title>
<varlistentry>
<term>Chooser</term>
<listitem>
<synopsis>Chooser=bin/gdmchooser --disable-sound</synopsis>
<para>
Full path and name of the chooser executable followed by optional arguments.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>DefaultPath</term>
<listitem>
<synopsis>DefaultPath=/bin:/usr/bin:/usr/bin/X11:/usr/local/bin</synopsis>
<para>
Specifies the path which will be set in the user's session.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>DisplayInitDir</term>
<listitem>
<synopsis>DisplayInitDir=etc/gdm/Init</synopsis>
<para>
Directory containing the display init scripts. See the
``Script Directories'' section for more info.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Greeter</term>
<listitem>
<synopsis>Greeter=bin/gdmlogin --disable-sound</synopsis>
<para>
Full path and name of the greeter executable followed by optional arguments.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Group</term>
<listitem>
<synopsis>Group=gdm</synopsis>
<para>
The group id under which
<filename>gdmlogin</filename>/<filename>gdmchooser</filename>
are run.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>HaltCommand</term>
<listitem>
<synopsis>HaltCommand=/sbin/shutdown -h now</synopsis>
<para>
Full path and arguments to command to be executed when
user selects Halt from the System menu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>KillInitClients</term>
<listitem>
<synopsis>KillInitClients=1</synopsis>
<para>
Determines whether GDM should kill X clients started by
the init scripts when the user logs in.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>LogDir</term>
<listitem>
<synopsis>LogDir=var/gdm</synopsis>
<para>
Directory containing the log files for the individual
displays. By default this is the same as the
ServAuthDir.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>PidFile</term>
<listitem>
<synopsis>PidFile=var/run/gdm.pid</synopsis>
<para>
Name of the file containing the <filename>gdm</filename>
process id.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>PostSessionScriptDir</term>
<listitem>
<synopsis>PostSessionScriptDir=etc/gdm/PostSession</synopsis>
<para>
Directory containing the scripts run after the user logs
out. See the ``Script Directories'' section for more
info.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>PreSessionScriptDir</term>
<listitem>
<synopsis>PreSessionScriptDir=etc/gdm/PreSession</synopsis>
<para>
Directory containing the scripts run before the user
logs in. See the ``Script Directories'' section for
more info.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>RebootCommand</term>
<listitem>
<synopsis>RebootCommand=/sbin/shutdown -r now</synopsis>
<para>
Full path and optional arguments to the program to be
executed when user selects Reboot from the System menu.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>RootPath</term>
<listitem>
<synopsis>RootPath=/sbin:/usr/sbin:/bin:/usr/bin:/usr/bin/X11:/usr/local/bin</synopsis>
<para>
Specifies the path which will be set in the root's
session and the {Init,PreSession,PostSession} scripts
executed by GDM.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>ServAuthDir</term>
<listitem>
<synopsis>ServAuthDir=/var/gdm</synopsis>
<para>
Directory containing the X authentication files for the
individual displays. Should be owned by
<filename>gdm.gdm</filename> with permissions 750.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>SessionDir</term>
<listitem>
<synopsis>SessionDir=etc/gdm/Sessions</synopsis>
<para>
Directory containing the scripts for all session types
available on the system.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>User</term>
<listitem>
<synopsis>User=gdm</synopsis>
<para>
The username under which <filename>gdmlogin</filename> /
<filename>gdmchooser</filename> are run.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>UserAuthDir</term>
<listitem>
<synopsis>UserAuthDir=</synopsis>
<para>
The directory where user's
<filename>.Xauthority</filename> file should be
saved. When nothing is specfied the user's home
directory is used.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>UserAuthFBDir</term>
<listitem>
<synopsis>UserAuthFBDir=/tmp</synopsis>
<para>
If GDM fails to update the user's
<filename>.Xauthority</filename> file for some a
fallback cookie is created in this directory.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>UserAuthFile</term>
<listitem>
<synopsis>UserAuthFile=.Xauthority</synopsis>
<para>
Name of the file used for storing user cookies in. The
user's $XAUTHORITY environment variable will be set to
point at this file.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Security Options</title>
<variablelist>
<title>[security]</title>
<varlistentry>
<term>AllowRoot</term>
<listitem>
<synopsis>AllowRoot=0</synopsis>
<para>
Graphical root logins are disallowed by default. Set
this value to 1 to enable priviledged user logins.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>RelaxPermissions</term>
<listitem>
<synopsis>RelaxPermissions=0</synopsis>
<para>
By default GDM ignores files and directories writable to
other users than the owner.
</para>
<para>
Changing the value of RelaxPermissions makes it
possible to alter this behaviour:
</para>
<para>
0 - Paranoia option. Only accepts user owned files and directories.
</para>
<para>
1 - Allow group writable files and directories.
</para>
<para>
2 - Allow world writable files and directories.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>RetryDelay</term>
<listitem>
<synopsis>RetryDelay=3</synopsis>
<para>
The number of seconds GDM should wait before
reactivating the entry field after a failed login.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>UserMaxFile</term>
<listitem>
<synopsis>UserMaxFile=65536</synopsis>
<para>
GDM will refuse to read/write files bigger than this number
(specified in bytes).
</para>
<para>
In addition to the size check both
<filename>gdm</filename> and
<filename>gdmlogin</filename> are extremely picky
about accessing files in user directories. Neither
will follow symlinks and they can optionally refuse to
read files and directories writable by other than the
owner. See the RelaxPermissions option for more info.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>VerboseAuth</term>
<listitem>
<synopsis>VerboseAuth=0</synopsis>
<para>
Specifies whether GDM should print authentication errors
in the message field in the greeter.
</para>
<para>
Depending on your system setup, usernames might be
exposed when this option is on.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>XDCMP Support</title>
<variablelist>
<title>[xdmcp]</title>
<varlistentry>
<term>Enable</term>
<listitem>
<synopsis>Enable=0</synopsis>
<para>
Setting this to 1 enables XDMCP support allowing remote displays/X
terminals to be managed by GDM.
</para>
<para>
<filename>gdm</filename> listens for requests on UDP
port 177. See the Port option for more information.
</para>
<para>
If GDM is compiled to support it, access from remote displays
can be controlled using the TCP Wrappers library. The service name is
<filename>gdm</filename>
</para>
<para>
You should add
</para>
<screen>
gdm: .my.domain
</screen>
<para>
to your <filename>/etc/hosts.allow</filename>. See the
<filename>hosts_access(5)</filename> man page for details.
</para>
<para>
Please note that XDMCP is not a particularly secure protocol
and that it is a good idea to block UDP port 177 on your
firewall unless you really need it.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>HonorIndirect</term>
<listitem>
<synopsis>HonorIndirect=1</synopsis>
<para>
Enables XDMCP INDIRECT choosing (i.e. remote execution
of <filename>gdmchooser</filename>) for X-terminals
which don't supply their own display browser.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxPending</term>
<listitem>
<synopsis>MaxPending=4</synopsis>
<para>
To avoid denial of service attacks, GDM has fixed size
queue of pending connections. Only MaxPending displays
can start at the same time.
</para>
<para>
Please note that this parameter does *not* limit the
number of remote displays which can be managed. It only
limits the number of displays initiating a connection
simultaneously.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxPendingIndirect</term>
<listitem>
<synopsis>MaxPendingIndirect=4</synopsis>
<para>
Specifies the number of remote displays that can be in
choose mode simultaneously. FIXME!
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxSessions</term>
<listitem>
<synopsis>MaxSessions=16</synopsis>
<para>
Determines the maximum number of remote display
connections which will be managed
simultaneously. I.e. the total number of remote displays
that can use your host.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxWait</term>
<listitem>
<synopsis>MaxWait=30</synopsis>
<para>
When GDM is ready to manage a display an ACCEPT packet
is sent to it containing a unique session id which will
be used in future XDMCP conversations.
</para>
<para>
GDM will then place the session id in the pending queue
waiting for the display to respond with a MANAGE request.
</para>
<para>
If no response is received within MaxWait seconds, GDM
will declare the display dead and erase it from the pending
queue freeing up the slot for other displays.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxWaitIndirect</term>
<listitem>
<synopsis>MaxWaitIndirect=30</synopsis>
<para>
FIXME
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Port</term>
<listitem>
<synopsis>Port=177</synopsis>
<para>
The UDP port number <filename>gdm</filename> should
listen to for XDMCP requests. Don't change this unless
you know what you're doing.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Common GUI Configuration Options</title>
<variablelist>
<title>[gui]</title>
<varlistentry>
<term>Gtkrc</term>
<listitem>
<synopsis>Gtkrc=</synopsis>
<para>
Path to a <filename>gtkrc</filename> containing the
theme for use in <filename>gdmlogin</filename> /
<filename>gdmchooser</filename>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxIconWidth</term>
<listitem>
<synopsis>MaxIconWidth=128</synopsis>
<para>
Specifies the maximum icon width (in pixels) that the
face browser will display. Icons larger than this will
be scaled down.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>MaxIconHeight</term>
<listitem>
<synopsis>MaxIconHeight=128</synopsis>
<para>
Specifies the maximum icon height (in pixels) that the
face browser will display. Icons larger than this will
be scaled down.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Greeter Configuration</title>
<variablelist>
<title>[greeter]</title>
<varlistentry>
<term>Browser</term>
<listitem>
<synopsis>Browser=0</synopsis>
<para>
Set to 1 to enable the face browser. See the ``Greeter''
section for more information on the face browser.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>DefaultFace</term>
<listitem>
<synopsis>DefaultFace=share/pixmaps/nophoto.png</synopsis>
<para>
Default icon file for users without a personal picture
in <filename>~/gnome/photo</filename>. The image must be
in an Imlib supported format and the file must be
readable for the gdm user.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>DefaultLocale</term>
<listitem>
<synopsis>DefaultLocale=english</synopsis>
<para>
This language is used for the session unless nothing is
specified in <filename>~user/.gnome/gdm</filename> and
the user didn't select a language in the Locale menu in
the greeter.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Exclude</term>
<listitem>
<synopsis>Exclude=bin,daemon,adm,lp,sync,shutdown,halt,mail,...</synopsis>
<para>
Comma-separated list of usernames to exclude from the
face browser. The excluded users will still be able to
log in.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Font</term>
<listitem>
<synopsis>Font=-adobe-helvetica-bold-r-normal-*-*-180-*-*-*-*-*-*</synopsis>
<para>
Font to use for the welcome message in the greeter.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>GlobalFaceDir</term>
<listitem>
<synopsis>GlobalFaceDir=share/faces/</synopsis>
<para>
Systemwide directory for face files. The sysadmin can
place icons for users here without touching their
homedirs. Faces are named after their users' logins.
</para>
<para>
I.e. <filename><GlobalFaceDir>/johndoe</filename>
would contain the face icon for the user ``johndoe''. No
image format extension should be specified.
</para>
<para>
The face images must be stored in Imlib supported formats and
they must be readable for the GDM user.
</para>
<para>
A user's own icon file will always take precedence over the sysadmin
provided one.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Icon</term>
<listitem>
<synopsis>Icon=share/pixmaps/gdm.xpm</synopsis>
<para>
Icon to use for <filename>gdmlogin</filename> when it's
in the iconified state. The image must be in an Imlib
supported format and it must be readable for the GDM
user. If no file is specified the iconify feature is
disabled.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>LocaleFile</term>
<listitem>
<synopsis>LocaleFile=etc/gdm/locale.alias</synopsis>
<para>
File in GNU locale format with entries for all supported
languages on the system.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Logo</term>
<listitem>
<synopsis>Logo=share/pixmaps/gnome-logo-large.png</synopsis>
<para>
Image file to display in the logo box. The file must be
in an Imlib supported format and it must be readable by
the GDM user. If no file is specified the logo feature
is disabled.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Quiver</term>
<listitem>
<synopsis>Quiver=1</synopsis>
<para>
Controls whether <filename>gdmlogin</filename> should
shake the display when an incorrect username/password is
entered.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>SystemMenu</term>
<listitem>
<synopsis>SystemMenu=0</synopsis>
<para>
Turns the Shutdown/Halt menu on/off.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Welcome</term>
<listitem>
<synopsis>Welcome=Welcome to %h</synopsis>
<para>
Controls which text to display next to the logo image in the
greeter. The following control chars are supported:
</para>
<para>
%% the `%' character
</para>
<para>
%d display's hostname
</para>
<para>
%h hostname
</para>
<para>
%r release (OS version)
</para>
<para>
%s sysname (i.e. OS)
</para>
<para>
%m machine (processor type)
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>XDCMP Chooser Options</title>
<variablelist>
<title>[chooser]</title>
<varlistentry>
<term>DefaultHostImage</term>
<listitem>
<synopsis>DefaultHostImage=share/pixmaps/nohost.png</synopsis>
<para>
File name for the default host icon. This image will be
displayed if no icon is specified for a given host. The
file must be in an Imlib supported format and it must be
readable for the GDM user.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>HostImageDir</term>
<listitem>
<synopsis>HostImageDir=share/hosts</synopsis>
<para>
Repository for host icon files. The sysadmin can place
icons for remote hosts here and they will appear in
<filename>gdmchooser</filename>.
</para>
<para>
The file name must match the fully qualified name (FQDN) for the host.
The icons must be stored in Imlib supported formats and they must be
readable to the gdm user.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>ScanTime</term>
<listitem>
<synopsis>ScanTime=3</synopsis>
<para>
Specifies how many seconds the chooser should wait for
replies to its BROADCAST_QUERY.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Local X Server Configuration</title>
<variablelist>
<title>[servers]</title>
<varlistentry>
<term>0</term>
<listitem>
<synopsis>0=/usr/bin/X11/X</synopsis>
<para>
Control section for local X servers. Each line indicates
the local display number and the command that needs to
be run to start the X server(s).
</para>
<para>
GDM will append "<filename>-auth
<ServAuthDir>/:n.Xauth :n</filename>", where n is
the display number.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>
</chapter>
</book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
|