Advertisement
corrosiontears

Lightdm.conf Semplice

Jun 21st, 2013
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.91 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
  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. # user-session = Session to load for users
  42. # allow-guest = True if guest login is allowed
  43. # guest-session = Session to load for guests (overrides user-session)
  44. # session-wrapper = Wrapper script to run session with
  45. # display-setup-script = Script to run when starting a greeter session (runs as root)
  46. # greeter-setup-script = Script to run when starting a greeter (runs as root)
  47. # session-setup-script = Script to run when starting a user session (runs as root)
  48. # session-cleanup-script = Script to run when quitting a user session (runs as root)
  49. # autologin-guest = True to log in as guest by default
  50. # autologin-user = User to log in with by default (overrides autologin-guest)
  51. # autologin-user-timeout = Number of seconds to wait before loading default user
  52. # autologin-session = Session to load for automatic login (overrides user-session)
  53. # exit-on-failure = True if the daemon should exit if this seat fails
  54. #
  55. [SeatDefaults]
  56. #xserver-command=X
  57. #xserver-layout=
  58. #xserver-config=
  59. xserver-allow-tcp=false
  60. #xdmcp-manager=
  61. #xdmcp-port=177
  62. #xdmcp-key=
  63. greeter-session=lightdm-greeter
  64. greeter-hide-users=false
  65. user-session=lightdm-xsession
  66. allow-guest=false
  67. #guest-session=UNIMPLEMENTED
  68. session-wrapper=/etc/X11/Xsession
  69. #display-setup-script=
  70. #greeter-setup-script=
  71. #session-setup-script=
  72. #session-cleanup-script=
  73. #autologin-guest=false
  74. #autologin-user=luckyuser
  75. #autologin-user-timeout=0
  76. #autologin-session=UNIMPLEMENTED
  77. #exit-on-failure=false
  78.  
  79. #
  80. # Seat configuration
  81. #
  82. # Each seat must start with "Seat:".
  83. # Uses settings from [SeatDefaults], any of these can be overriden by setting them in this section.
  84. #
  85. #[Seat:0]
  86.  
  87. #
  88. # XDMCP Server configuration
  89. #
  90. # enabled = True if XDMCP connections should be allowed
  91. # port = UDP/IP port to listen for connections on
  92. # key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
  93. #
  94. # The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn.  Alternatively
  95. # it can be a word and the first 7 characters are used as the key.
  96. #
  97. [XDMCPServer]
  98. #enabled=false
  99. #port=177
  100. #key=
  101.  
  102. #
  103. # VNC Server configuration
  104. #
  105. # enabled = True if VNC connections should be allowed
  106. # port = TCP/IP port to listen for connections on
  107. #
  108. [VNCServer]
  109. #enabled=false
  110. #port=5900
  111. #width=1024
  112. #height=768
  113. #depth=8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement