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
|
#
# General configuration
#
# xserver = X server to run
# authorization-directory = Directory to store X authorization files
# log-directory = Directory to log information to
# session-wrapper = Program to run sessions through
# displays = list of static displays to manage
#
[LightDM]
#xserver=/usr/bin/X
#authorization-directory=/var/cache/lightdm/authority
#log-directory=/var/log/lightdm
#session-wrapper=/etc/X11/Xsession
displays=default-display
#
# Display configuration
#
# vt = Virtual terminal to start on (0-n or 'active')
# greeter-theme = Greeter theme
# greeter-user = User to run greeter process as
# session = Default session
# default-user = Username of default user to log in as
# default-user-timeout = Delay before logging in in seconds (use 0 for automatic login)
# pam-service = PAM service to use
# display-number = Display number to use (overrides automatic display number selection)
# xdmcp-manager = XDMCP manager to connect to
# xdmcp-port = XDMCP UDP/IP port to communicate on
# key = Authentication key to use
#
[default-display]
vt=active
#greeter-theme=example-gtk-gnome
#greeter-user=lightdm
#session=gnome
#default-user=bob
#default-user-timeout=5
#default-user-session=
#pam-service=lightdm
#display-number=2
#xdmcp-manager=
#xdmcp-port=177
#key=0x0123456789ABCD
#
# User manager configuration
#
# load-users = true if can provide user list to greeter
# minimum-uid = Minimum UID required to be shown in greeter
# hidden-users = Users that are not shown to the user
# hidden-shells = Shells that indicate a user cannot login
#
[UserManager]
#load-users=true
#minimum-uid=500
#hidden-users=nobody nobody4 noaccess
#hidden-shells=/bin/false /usr/sbin/nologin
#
# Guest account configuration
#
# enabled = true if guest accounts are enabled
# allow-multiple = true if can have multiple guest accounts at the same time
# setup-script = script to be run to setup/destroy guest accounts
#
[GuestAccount]
#enabled=false
#allow-multiple=false
#setup-script=
#
# XDMCP Server configuration
#
# enabled = true if XDMCP connections should be allowed
# port = UDP/IP port to listen for connections on
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication
#
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
# it can be a word and the first 7 characters are used as the key.
#
[xdmcp]
#enabled=true
#port=177
#key=0x0123456789ABCD
|