Advertisement
Guest User

lightdm.conf

a guest
Sep 28th, 2014
690
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. #
  2. # General configuration
  3. #
  4. # start-default-seat = True to always start one seat if none are defined in the configuration
  5. # greeter-user = User to run greeter as
  6. # minimum-display-number = Minimum display number to use for X servers
  7. # minimum-vt = First VT to run displays on
  8. # lock-memory = True to prevent memory from being paged to disk
  9. # user-authority-in-system-dir = True if session authority should be in the system location
  10. # guest-account-script = Script to be run to setup guest account
  11. # log-directory = Directory to log information to
  12. # run-directory = Directory to put running state in
  13. # cache-directory = Directory to cache to
  14. # xsessions-directory = Directory to find X sessions
  15. # remote-sessions-directory = Directory to find remote sessions
  16. # xgreeters-directory = Directory to find X greeters
  17. # disable-guest-wrapper = Disable using guest session wrapper (temporary? required to make tests work without installing)
  18. #
  19.  
  20. [LightDM]
  21. #start-default-seat=true
  22. #greeter-user=lightdm
  23. #minimum-display-number=0
  24. #minimum-vt=7
  25. #lock-memory=true
  26. #user-authority-in-system-dir=false
  27. #guest-account-script=guest-account
  28. #log-directory=/var/log/lightdm
  29. #run-directory=/var/run/lightdm
  30. #cache-directory=/var/cache/lightdm
  31. #xsessions-directory=/usr/share/xsessions
  32. #remote-sessions-directory=/usr/share/lightdm/remote-sessions
  33. #xgreeters-directory=/usr/share/xgreeters
  34. #disable-guest-wrapper=false
  35.  
  36. #
  37. # Seat defaults
  38. #
  39. # type = Seat type (xlocal, xremote)
  40. # xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
  41. # xserver-layout = Layout to pass to X server
  42. # xserver-config = Config file to pass to X server
  43. # xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
  44. # xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
  45. # xdmcp-port = XDMCP UDP/IP port to communicate on
  46. # xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
  47. # greeter-session = Session to load for greeter
  48. # greeter-hide-users = True to hide the user list
  49. # greeter-allow-guest = True if the greeter should show a guest login option
  50. # greeter-show-manual-login = True if the greeter should offer a manual login option
  51. # greeter-show-remote-login = True if the greeter should offer a remote login option
  52. # user-session = Session to load for users
  53. # allow-guest = True if guest login is allowed
  54. # guest-session = Session to load for guests (overrides user-session)
  55. # session-wrapper = Wrapper script to run session with
  56. # display-setup-script = Script to run when starting a greeter session (runs as root)
  57. # greeter-setup-script = Script to run when starting a greeter (runs as root)
  58. # session-setup-script = Script to run when starting a user session (runs as root)
  59. # session-cleanup-script = Script to run when quitting a user session (runs as root)
  60. # autologin-guest = True to log in as guest by default
  61. # autologin-user = User to log in with by default (overrides autologin-guest)
  62. # autologin-user-timeout = Number of seconds to wait before loading default user
  63. # autologin-session = Session to load for automatic login (overrides user-session)
  64. # exit-on-failure = True if the daemon should exit if this seat fails
  65. #
  66.  
  67. [SeatDefaults]
  68. #type=xlocal
  69. #xserver-command=X
  70. #xserver-layout=
  71. #xserver-config=
  72. xserver-allow-tcp=false
  73. #xdmcp-manager=
  74. #xdmcp-port=177
  75. #xdmcp-key=
  76. greeter-session=lightdm-greeter
  77. greeter-hide-users=false
  78. #greeter-allow-guest=true
  79. #greeter-show-manual-login=false
  80. #greeter-show-remote-login=true
  81. #user-session=default
  82. #allow-guest=true
  83. #guest-session=UNIMPLEMENTED
  84. session-wrapper=/etc/X11/Xsession
  85. #display-setup-script=
  86. #greeter-setup-script=
  87. #session-setup-script=
  88. #session-cleanup-script=
  89. #autologin-guest=false
  90. #autologin-user=
  91. #autologin-user-timeout=0
  92. #autologin-session=UNIMPLEMENTED
  93. #exit-on-failure=false
  94.  
  95. #
  96. # Seat configuration
  97. #
  98. # Each seat must start with "Seat:".
  99. # Uses settings from [SeatDefaults], any of these can be overriden by setting them in this section.
  100. #
  101. #[Seat:0]
  102.  
  103. #
  104. # XDMCP Server configuration
  105. #
  106. # enabled = True if XDMCP connections should be allowed
  107. # port = UDP/IP port to listen for connections on
  108. # key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
  109. #
  110. # The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn. Alternatively
  111. # it can be a word and the first 7 characters are used as the key.
  112. #
  113.  
  114. [XDMCPServer]
  115. #enabled=false
  116. #port=177
  117. #key=
  118.  
  119. #
  120. # VNC Server configuration
  121. #
  122. # enabled = True if VNC connections should be allowed
  123. # command = Command to run Xvnc server with
  124. # port = TCP/IP port to listen for connections on
  125. # width = Width of display to use
  126. # height = Height of display to use
  127. # depth = Color depth of display to use
  128. #
  129.  
  130. [VNCServer]
  131. #enabled=false
  132. #command=Xvnc
  133. #port=5900
  134. #width=1024
  135. #height=768
  136. #depth=8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement