Advertisement
donniezazen

lightdm.conf

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