Advertisement
Guest User

Untitled

a guest
Jun 12th, 2017
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.39 KB | None | 0 0
  1. # KDM master configuration file
  2. #
  3. # Definition: the greeter is the login dialog, i.e., the part of KDM
  4. # which the user sees.
  5. #
  6. # You can configure every X-display individually.
  7. # Every display has a display name, which consists of a host name
  8. # (which is empty for local displays specified in {Static|Reserve}Servers),
  9. # a colon, and a display number. Additionally, a display belongs to a
  10. # display class (which can be ignored in most cases; the control center
  11. # does not support this feature at all).
  12. # Sections with display-specific settings have the formal syntax
  13. # "[X-" host [":" number [ "_" class ]] "-" sub-section "]"
  14. # You can use the "*" wildcard for host, number, and class. You may omit
  15. # trailing components; they are assumed to be "*" then.
  16. # The host part may be a domain specification like ".inf.tu-dresden.de".
  17. # It may also be "+", which means non-empty, i.e. remote displays only.
  18. # From which section a setting is actually taken is determined by these
  19. # rules:
  20. # - an exact match takes precedence over a partial match (for the host part),
  21. # which in turn takes precedence over a wildcard ("+" taking precedence
  22. # over "*")
  23. # - precedence decreases from left to right for equally exact matches
  24. # Example: display name "myhost:0", class "dpy".
  25. # [X-myhost:0_dpy] precedes
  26. # [X-myhost:0_*] (same as [X-myhost:0]) precedes
  27. # [X-myhost:*_dpy] precedes
  28. # [X-myhost:*_*] (same as [X-myhost]) precedes
  29. # [X-+:0_dpy] precedes
  30. # [X-*:0_dpy] precedes
  31. # [X-*:0_*] (same as [X-*:0]) precedes
  32. # [X-*:*_*] (same as [X-*])
  33. # These sections do NOT match this display:
  34. # [X-hishost], [X-myhost:0_dec], [X-*:1], [X-:*]
  35. # If a setting is not found in any matching section, the default is used.
  36. #
  37. # Every comment applies to the following section or key. Note that all
  38. # comments will be lost if you change this file with the kcontrol frontend.
  39. # The defaults refer to KDM's built-in values, not anything set in this file.
  40. #
  41. # Special characters need to be backslash-escaped (leading and trailing
  42. # spaces (\s), tab (\t), linefeed (\n), carriage return (\r) and the
  43. # backslash itself (\\)).
  44. # In lists, fields are separated with commas without whitespace in between.
  45. # Some command strings are subject to simplified sh-style word splitting:
  46. # single quotes (') and double quotes (") have the usual meaning; the backslash
  47. # quotes everything (not only special characters). Note that the backslashes
  48. # need to be doubled because of the two levels of quoting.
  49.  
  50. [General]
  51. # This option exists solely for the purpose of a clean automatic upgrade.
  52. # Do not even think about changing it!
  53. ConfigVersion=2.4
  54. # List of permanent displays. Displays with a hostname are foreign. A display
  55. # class may be specified separated by an underscore.
  56. # Default is ":0"
  57. StaticServers=:0
  58. # List of on-demand displays. See StaticServers for syntax.
  59. # Default is ""
  60. ReserveServers=:1,:2,:3
  61. # VTs to allocate to X-servers. A negative number means that the VT will be
  62. # used only if it is free. If all VTs in this list are used up, the next free
  63. # one greater than the last one in this list will be allocated.
  64. # Default is ""
  65. ServerVTs=-7
  66. # TTYs (without /dev/) to monitor for activity while in console mode.
  67. # Default is ""
  68. ConsoleTTYs=tty1,tty2,tty3,tty4,tty5,tty6
  69. # Where KDM should store its PID (do not store if empty).
  70. # Default is ""
  71. PidFile=/var/run/kdm.pid
  72. # Whether KDM should lock the PID file to prevent having multiple KDM
  73. # instances running at once. Do not change unless you are brave.
  74. # Default is true
  75. #LockPidFile=false
  76. # Where to store authorization files.
  77. # Default is "/var/run/xauth"
  78. #AuthDir=/tmp
  79. # Whether KDM should automatically re-read configuration files, if it
  80. # finds them having changed.
  81. # Default is true
  82. #AutoRescan=false
  83. # Additional environment variables KDM should pass on to all programs it runs.
  84. # LD_LIBRARY_PATH and XCURSOR_THEME are good candidates;
  85. # otherwise, it should not be necessary very often.
  86. # Default is ""
  87. #ExportList=LD_LIBRARY_PATH,ANOTHER_IMPORTANT_VAR
  88. # A character device KDM should read entropy from.
  89. # Empty means use the system's preferred entropy device.
  90. # Default is ""
  91. #RandomDevice=/dev/altrandom
  92. # Where the command sockets should be created; make it empty to disable
  93. # them.
  94. # Default is "/var/run/xdmctl"
  95. #FifoDir=/tmp
  96. # The group to which the global command socket should belong;
  97. # can be either a name or a numerical ID.
  98. # Default is 0
  99. #FifoGroup=xdmctl
  100. # The directory in which KDM should store persistent working data.
  101. # Default is "/var/lib/kdm"
  102. #DataDir=
  103. # The directory in which KDM should store users' .dmrc files. This is only
  104. # needed if the home directories are not readable before actually logging in
  105. # (like with AFS).
  106. # Default is ""
  107. #DmrcDir=/nfs-shared/var/dmrcs
  108.  
  109. [Xdmcp]
  110. # Whether KDM should listen to incoming XDMCP requests.
  111. # Default is true
  112. Enable=false
  113. # The UDP port on which KDM should listen for XDMCP requests. Do not change.
  114. # Default is 177
  115. #Port=177
  116. # File with the private keys of X-terminals. Required for XDM authentication.
  117. # Default is ""
  118. #KeyFile=/usr/share/config/kdm/kdmkeys
  119. # XDMCP access control file in the usual XDM-Xaccess format.
  120. # Default is "/usr/share/config/kdm/Xaccess"
  121. #Xaccess=
  122. # Number of seconds to wait for display to respond after the user has
  123. # selected a host from the chooser.
  124. # Default is 15
  125. #ChoiceTimeout=10
  126. # Strip domain name from remote display names if it is equal to the local
  127. # domain.
  128. # Default is true
  129. #RemoveDomainname=false
  130. # Use the numeric IP address of the incoming connection on multihomed hosts
  131. # instead of the host name.
  132. # Default is false
  133. #SourceAddress=true
  134. # The program which is invoked to dynamically generate replies to XDMCP
  135. # DirectQuery or BroadcastQuery requests.
  136. # If empty, no program is invoked and "Willing to manage" is sent.
  137. # Default is ""
  138. Willing=/usr/share/config/kdm/Xwilling
  139.  
  140. [Shutdown]
  141. # The command (subject to word splitting) to run to halt the system.
  142. # Default is "/sbin/halt"
  143. #HaltCmd=
  144. # The command (subject to word splitting) to run to reboot the system.
  145. # Default is "/sbin/reboot"
  146. #RebootCmd=
  147. # Whether it is allowed to shut down the system via the global command socket.
  148. # Default is false
  149. #AllowFifo=true
  150. # Whether it is allowed to abort active sessions when shutting down the
  151. # system via the global command socket.
  152. # Default is true
  153. #AllowFifoNow=false
  154. # The boot manager KDM should use for offering boot options in the
  155. # shutdown dialog.
  156. # "None" - no boot manager
  157. # "Grub" - Grub boot manager
  158. # "Lilo" - Lilo boot manager (Linux on i386 & x86-64 only)
  159. # Default is None
  160. #BootManager=Grub
  161.  
  162. # Rough estimations about how many seconds KDM will spend at most on
  163. # - opening a connection to the X-server (OpenTime) if the attempt
  164. # - times out: OpenTimeout
  165. # - is refused: OpenRepeat * OpenDelay
  166. # - starting a local X-server (ServerTime):
  167. # ServerAttempts * (ServerTimeout + OpenDelay)
  168. # - starting a display:
  169. # - local display: ServerTime + OpenTime
  170. # - foreign display: StartAttempts * OpenTime
  171. # - XDMCP display: OpenTime (repeated indefinitely by client)
  172.  
  173. # Core config for all displays
  174. [X-*-Core]
  175. # How long to wait before retrying to connect a display.
  176. # Default is 15
  177. #OpenDelay=15
  178. # How long to wait before timing out a display connection attempt.
  179. # Default is 120
  180. #OpenTimeout=120
  181. # How many connection attempts to make during a start attempt. Note that
  182. # a timeout aborts the entire start attempt.
  183. # Default is 5
  184. #OpenRepeat=5
  185. # Try at most that many times to start a display. If this fails, the display
  186. # is disabled.
  187. # Default is 4
  188. #StartAttempts=4
  189. # Ping remote display every that many minutes.
  190. # Default is 5
  191. #PingInterval=5
  192. # Wait for a Pong that many minutes.
  193. # Default is 5
  194. #PingTimeout=5
  195. # The name of this X-server's Xauth file.
  196. # If empty, a random name in the AuthDir directory will be used.
  197. # Default is ""
  198. #AuthFile=
  199. # Specify a file with X-resources for the greeter, chooser and background.
  200. # The KDE frontend does not use this file, so you do not need it unless you
  201. # use another background generator than krootimage.
  202. # Default is ""
  203. #Resources=
  204. # The xrdb program to use to read the above specified recources.
  205. # Subject to word splitting.
  206. # Default is "/usr/bin/xrdb"
  207. #Xrdb=
  208. # A program to run before the greeter is shown. Can be used to start an
  209. # xconsole or an alternative background generator. Subject to word splitting.
  210. # Default is ""
  211. Setup=/usr/share/config/kdm/Xsetup
  212. # A program to run before a user session starts. Subject to word splitting.
  213. # Default is ""
  214. Startup=/usr/share/config/kdm/Xstartup
  215. # A program to run after a user session exits. Subject to word splitting.
  216. # Default is ""
  217. Reset=/usr/share/config/kdm/Xreset
  218. # The program which is run as the user which logs in. It is supposed to
  219. # interpret the session argument (see SessionsDirs) and start an appropriate
  220. # session according to it. Subject to word splitting.
  221. # Default is "/usr/bin/xterm -ls -T"
  222. Session=/usr/share/config/kdm/Xsession
  223. # The program to run if Session fails.
  224. # Default is "/usr/bin/xterm"
  225. #FailsafeClient=
  226. # The PATH for the Session program.
  227. # Default is "/usr/local/bin:/usr/bin:/bin:/usr/games"
  228. #UserPath=
  229. # The PATH for Setup, Startup and Reset, etc.
  230. # Default is "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  231. #SystemPath=
  232. # The default system shell.
  233. # Default is "/bin/sh"
  234. #SystemShell=/bin/bash
  235. # Where to put the user's X-server authorization file if ~/.Xauthority
  236. # cannot be created.
  237. # Default is "/tmp"
  238. #UserAuthDir=
  239. # If true, UserAuthDir will be used unconditionally.
  240. # Default is false
  241. #ForceUserAuthDir=true
  242. # Whether to automatically restart sessions after X-server crashes.
  243. # Note that enabling this makes circumventing screen lockers other than
  244. # KDE's built-in one possible!
  245. # Default is false
  246. #AutoReLogin=true
  247. # Allow root logins?
  248. # Default is true
  249. AllowRootLogin=false
  250. # Allow to log in, when user has set an empty password?
  251. # Default is true
  252. AllowNullPasswd=false
  253. # Who is allowed to shut down the system. This applies both to the
  254. # greeter and to the command sockets.
  255. # "None" - no "Shutdown..." menu entry is shown at all
  256. # "Root" - the root password must be entered to shut down
  257. # "All" - everybody can shut down the machine
  258. # Default is All
  259. AllowShutdown=Root
  260. # Who is allowed to abort active sessions when shutting down.
  261. # "None" - no forced shutdown is allowed at all
  262. # "Root" - the root password must be entered to shut down forcibly
  263. # "All" - everybody can shut down the machine forcibly
  264. # Default is All
  265. #AllowSdForceNow=Root
  266. # The default choice for the shutdown condition/timing.
  267. # "Schedule" - shut down after all active sessions exit (possibly at once)
  268. # "TryNow" - shut down, if no active sessions are open; otherwise, do nothing
  269. # "ForceNow" - shut down unconditionally
  270. # Default is Schedule
  271. #DefaultSdMode=ForceNow
  272. # How to offer shutdown scheduling options:
  273. # "Never" - not at all
  274. # "Optional" - as a button in the simple shutdown dialogs
  275. # "Always" - instead of the simple shutdown dialogs
  276. # Default is Never
  277. #ScheduledSd=Optional
  278. # The directories containing session type definitions in .desktop format,
  279. # ordered by falling priority.
  280. # Default is "/usr/share/apps/kdm/sessions"
  281. SessionsDirs=/usr/share/config/kdm/sessions,/usr/share/apps/kdm/sessions
  282. # The file (relative to $HOME) to redirect the session output to. The
  283. # following character pairs are replaced:
  284. # - %d -> current display
  285. # - %u -> current user
  286. # - %r -> empty at first. See below.
  287. # - %% -> a single %
  288. # When the constructed filename cannot be used safely and the specification
  289. # contains %<stuff>r, other names will be tried - this time expanding %<stuff>r
  290. # to <stuff> followed by a random number.
  291. # Default is ".xsession-errors"
  292. ClientLogFile=.xsession-errors-%d
  293. # Fallback when ClientLogFile cannot be used. The same expansions are
  294. # supported. DO NOT use relative paths here.
  295. # Default is "/tmp/xerr-%u-%d%-r"
  296. #ClientLogFallback=/var/log/xsession-errors/%u-%d%-r
  297. # Whether KDM's built-in utmp/wtmp/lastlog registration should be used.
  298. # Default is true
  299. #UseSessReg=false
  300.  
  301. # Greeter config for all displays
  302. [X-*-Greeter]
  303. # Specify the widget style for the greeter. Empty means to use the
  304. # built-in default which currently is "Oxygen-air".
  305. # Default is ""
  306. GUIStyle=Oxygen
  307. # Specify the widget color scheme for the greeter. Empty means to use the
  308. # built-in default which currently is "Oxygen-air".
  309. # Default is ""
  310. ColorScheme=Oxygen
  311. # What should be shown in the greeter's logo are:
  312. # "None" - nothing
  313. # "Logo" - the image specified by LogoPixmap
  314. # "Clock" - a neat analog clock
  315. # Default is Clock
  316. LogoArea=Logo
  317. # The image to show when LogoArea=Logo.
  318. # Default is ""
  319. LogoPixmap=/usr/share/apps/kdm/pics/kdelogo.png
  320. # The relative coordinates (X,Y in percent) of the center of the greeter.
  321. # Default is "50,50"
  322. #GreeterPos=30,40
  323. # The screen the greeter should be displayed on in multi-headed and Xinerama
  324. # setups. The numbering starts with 0. For Xinerama, it corresponds to the
  325. # listing order in the active ServerLayout section of XF86Config; -1 means
  326. # to use the upper-left screen, -2 means to use the upper-right screen.
  327. # Default is 0
  328. #GreeterScreen=-1
  329. # The headline in the greeter. The following character pairs are replaced:
  330. # - %d -> current display
  331. # - %h -> host name, possibly with domain name
  332. # - %n -> node name, most probably the host name without domain name
  333. # - %s -> the operating system
  334. # - %r -> the operating system's version
  335. # - %m -> the machine (hardware) type
  336. # - %% -> a single %
  337. # Default is "Welcome to %s at %n"
  338. #GreetString=K Desktop Environment (%n)
  339. # Whether the fonts used in the greeter should be antialiased.
  340. # Default is false
  341. #AntiAliasing=true
  342. # The font for the greeter headline.
  343. # Default is "Serif,20,bold"
  344. #GreetFont=Serif,20,5,0,50,0
  345. # The normal font used in the greeter.
  346. # Default is "Sans Serif,10"
  347. #StdFont=Sans Serif,10,5,0,50,0
  348. # The font used for the "Login Failed" message.
  349. # Default is "Sans Serif,10,bold"
  350. #FailFont=Sans Serif,10,5,0,75,0
  351. # What to do with the Num Lock modifier for the time the greeter is running:
  352. # "Off" - turn off
  353. # "On" - turn on
  354. # "Keep" - do not change the state
  355. # Default is Keep
  356. #NumLock=Off
  357. # Language and locale to use in the greeter, encoded like $LANGUAGE.
  358. # If empty, the settings from the environment are used.
  359. # Default is ""
  360. #Language=de_DE
  361. # Enable autocompletion in the username line edit.
  362. # Default is false
  363. #UserCompletion=true
  364. # Enable user list (names along with images) in the greeter.
  365. # Default is true
  366. #UserList=false
  367. # User selection for UserCompletion and UserList:
  368. # "NotHidden" - all users except those listed in HiddenUsers
  369. # "Selected" - only the users listed in SelectedUsers
  370. # Default is NotHidden
  371. #ShowUsers=Selected
  372. # For ShowUsers=Selected. @<group> means all users in that group.
  373. # Default is ""
  374. #SelectedUsers=root,johndoe
  375. # For ShowUsers=NotHidden. @<group> means all users in that group.
  376. # Default is ""
  377. #HiddenUsers=root
  378. # Special case of HiddenUsers: users with a non-zero UID less than this number
  379. # will not be shown as well.
  380. # Default is 0
  381. MinShowUID=500
  382. # Complement to MinShowUID: users with a UID greater than this number will
  383. # not be shown as well.
  384. # Default is 65535
  385. MaxShowUID=65000
  386. # If false, the users are listed in the order they appear in /etc/passwd.
  387. # If true, they are sorted alphabetically.
  388. # Default is true
  389. #SortUsers=false
  390. # Specify, where the users' pictures should be taken from.
  391. # "AdminOnly" - from <FaceDir>/$USER.face[.icon]
  392. # "PreferAdmin" - prefer <FaceDir>, fallback on $HOME
  393. # "PreferUser" - ... and the other way round
  394. # "UserOnly" - from the user's $HOME/.face[.icon]
  395. # Default is AdminOnly
  396. #FaceSource=PreferUser
  397. # The directory containing the user images if FaceSource is not UserOnly.
  398. # Default is "/usr/share/apps/kdm/faces"
  399. #FaceDir=/usr/share/faces
  400. # Specify, if/which user should be preselected for log in.
  401. # "None" - do not preselect any user
  402. # "Previous" - the user which successfully logged in last time
  403. # "Default" - the user specified in the DefaultUser option
  404. # Default is None
  405. #PreselectUser=Previous
  406. # If this is true, the password input line is focused automatically if
  407. # a user is preselected.
  408. # Default is false
  409. #FocusPasswd=true
  410. # If this is true, the entered password is echoed as bullets. Otherwise,
  411. # no feedback is given at all.
  412. # Default is true
  413. #EchoPasswd=false
  414. # If true, krootimage will be automatically started by KDM; otherwise, the
  415. # Setup script should be used to setup the background.
  416. # Default is true
  417. #UseBackground=false
  418. # The configuration file to be used by krootimage.
  419. # Default is "/usr/share/config/kdm/backgroundrc"
  420. #BackgroundCfg=
  421. # Whether to grab keyboard and mouse while the greeter is visible. Grabs
  422. # may improve security, but make on-screen keyboards, etc. unusable.
  423. # "Never" - never grab
  424. # "IfNoAuth" - grab if the display requires no X authorization
  425. # "Always" - always grab
  426. # Default is IfNoAuth
  427. #GrabInput=Always
  428. # Hold the X-server grabbed the whole time the greeter is visible. This
  429. # may be more secure, but it will disable any background and other
  430. # X-clients started from the Setup script.
  431. # Default is false
  432. #GrabServer=true
  433. # How many seconds to wait for grab to succeed.
  434. # Default is 3
  435. #GrabTimeout=3
  436. # Warn, if display has no X-authorization (local auth cannot be created,
  437. # XDMCP display wants no auth, or display is foreign from StaticServers).
  438. # Default is true
  439. #AuthComplain=false
  440. # Random seed for forging saved session types, etc. of unknown users.
  441. # This value should be random but constant across the login domain.
  442. # Default is 0
  443. ForgingSeed=1278199289
  444. # Specify conversation plugins for the login dialog. Each plugin can be
  445. # specified as a base name (which expands to $kde_modulesdir/kgreet_$base)
  446. # or as a full pathname.
  447. # Default is "classic"
  448. #PluginsLogin=sign
  449. # Same as PluginsLogin, but for the shutdown dialog.
  450. # Default is "classic"
  451. #PluginsShutdown=modern
  452. # A list of options of the form Key=Value. The conversation plugins can query
  453. # these settings; it is up to them what possible keys are.
  454. # Default is ""
  455. #PluginOptions=SomeKey=randomvalue,Foo=bar
  456. # Show the "Console Login" action in the greeter (if ServerTTY/ConsoleTTYs
  457. # is configured).
  458. # Default is true
  459. #AllowConsole=false
  460. # A program to run while the greeter is visible. It is supposed to preload
  461. # as much as possible of the session that is going to be started (most
  462. # probably).
  463. # Default is ""
  464. Preloader=/usr/bin/preloadkde
  465. # Whether the greeter should be themed.
  466. # Default is false
  467. UseTheme=true
  468. # The theme to use for the greeter. Can point to either a directory or an XML
  469. # file.
  470. # Default is ""
  471. Theme=/usr/share/apps/kdm/themes/oxygen-air
  472.  
  473. # Core config for local displays
  474. [X-:*-Core]
  475. # How often to try to run the X-server. Running includes executing it and
  476. # waiting for it to come up.
  477. # Default is 1
  478. #ServerAttempts=1
  479. # How long to wait for a local X-server to come up.
  480. # Default is 60
  481. #ServerTimeout=60
  482. # The command line to start the X-server, without display number and VT spec.
  483. # This string is subject to word splitting.
  484. # Default is "/usr/bin/X"
  485. ServerCmd=/usr/bin/X -br -novtswitch -quiet
  486. # Additional arguments for the X-servers for local sessions.
  487. # This string is subject to word splitting.
  488. # Default is ""
  489. ServerArgsLocal=-nolisten tcp
  490. # Additional arguments for the X-servers for remote sessions.
  491. # This string is subject to word splitting.
  492. # Default is ""
  493. #ServerArgsRemote=
  494. # Restart instead of resetting the local X-server after session exit.
  495. # Use it if the server leaks memory etc.
  496. # Default is true
  497. #TerminateServer=false
  498. # The signal needed to reset the local X-server.
  499. # Default is 1 (SIGHUP)
  500. #ResetSignal=1
  501. # The signal needed to terminate the local X-server.
  502. # Default is 15 (SIGTERM)
  503. #TermSignal=15
  504. # Create X-authorizations for local displays.
  505. # Default is true
  506. #Authorize=false
  507. # Which X-authorization mechanisms should be used.
  508. # Default is "MIT-MAGIC-COOKIE-1"
  509. #AuthNames=
  510. # Need to reset the X-server to make it read initial Xauth file.
  511. # Default is false
  512. #ResetForAuth=true
  513. # See above
  514. AllowNullPasswd=true
  515. # See above
  516. AllowShutdown=All
  517. # Enable password-less logins on this display. USE WITH EXTREME CARE!
  518. # Default is false
  519. #NoPassEnable=true
  520. # The users that do not need to provide a password to log in. NEVER list root!
  521. # "*" means all non-root users. @<group> means all users in that group.
  522. # Default is ""
  523. #NoPassUsers=fred,ethel
  524.  
  525. # Greeter config for local displays
  526. [X-:*-Greeter]
  527. # See above
  528. PreselectUser=Previous
  529. # See above
  530. FocusPasswd=true
  531. # Specify whether the greeter of local displays should start up in host chooser
  532. # (remote) or login (local) mode and whether it is allowed to switch to the
  533. # other mode.
  534. # "LocalOnly" - only local login possible
  535. # "DefaultLocal" - start up in local mode, but allow switching to remote mode
  536. # "DefaultRemote" - ... and the other way round
  537. # "RemoteOnly" - only choice of remote host possible
  538. # Default is LocalOnly
  539. LoginMode=DefaultLocal
  540. # A list of hosts to be automatically added to the remote login menu. The
  541. # special name "*" means broadcast.
  542. # Default is "*"
  543. #ChooserHosts=*,ugly,sky,dino,kiste.local,login.crap.com
  544. # Show the "Restart X Server"/"Close Connection" action in the greeter.
  545. # Default is true
  546. AllowClose=false
  547.  
  548. # Core config for 1st local display
  549. [X-:0-Core]
  550. # The VT the X-server should run on; auto-assign if zero, don't assign if -1.
  551. # Better leave it zero and use ServerVTs.
  552. # Default is 0
  553. #ServerVT=7
  554. # Enable automatic login. USE WITH EXTREME CARE!
  555. # Default is false
  556. #AutoLoginEnable=true
  557. # If true, auto-login after logout. If false, auto-login is performed only
  558. # when a display session starts up.
  559. # Default is false
  560. #AutoLoginAgain=true
  561. # The delay in seconds before automatic login kicks in.
  562. # Default is 0
  563. #AutoLoginDelay=10
  564. # The user to log in automatically. NEVER specify root!
  565. # Default is ""
  566. #AutoLoginUser=fred
  567. # The password for the user to log in automatically. This is NOT required
  568. # unless the user is logged into a NIS or Kerberos domain. If you use this
  569. # option, you should "chmod 600 kdmrc" for obvious reasons.
  570. # Default is ""
  571. #AutoLoginPass=secret!
  572. # Immediately lock the automatically started session. This works only with
  573. # KDE sessions.
  574. # Default is false
  575. #AutoLoginLocked=true
  576. # See above
  577. ClientLogFile=.xsession-errors
  578.  
  579. # Greeter config for 1st local display
  580. [X-:0-Greeter]
  581. # See above
  582. #PreselectUser=Default
  583. # The user to preselect if PreselectUser=Default.
  584. # Default is ""
  585. #DefaultUser=johndoe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement