Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.68 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.3
  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. # Where KDM should store its PID (do not store if empty).
  62. # Default is ""
  63. PidFile=/var/run/kdm.pid
  64. # Whether KDM should lock the PID file to prevent having multiple KDM
  65. # instances running at once. Do not change unless you are brave.
  66. # Default is true
  67. #LockPidFile=false
  68. # Where to store authorization files.
  69. # Default is "/var/run/xauth"
  70. #AuthDir=/tmp
  71. # Whether KDM should automatically re-read configuration files, if it
  72. # finds them having changed.
  73. # Default is true
  74. #AutoRescan=false
  75. # Additional environment variables KDM should pass on to all programs it runs.
  76. # LD_LIBRARY_PATH and XCURSOR_THEME are good candidates;
  77. # otherwise, it should not be necessary very often.
  78. # Default is ""
  79. #ExportList=LD_LIBRARY_PATH,ANOTHER_IMPORTANT_VAR
  80. # A file KDM should read entropy from.
  81. # Default is "/dev/mem"
  82. #RandomFile=
  83. # A UNIX domain socket KDM should read entropy from.
  84. # Default is ""
  85. #PrngdSocket=/tmp/entropy
  86. # A TCP socket on localhost KDM should read entropy from.
  87. # Default is 0
  88. #PrngdPort=4840
  89. # A character device KDM should read entropy from.
  90. # Empty means use the system's preferred entropy device.
  91. # Default is ""
  92. #RandomDevice=/dev/altrandom
  93. # Where the command FiFos should be created; make it empty to disable
  94. # them.
  95. # Default is "/var/run/xdmctl"
  96. #FifoDir=/tmp
  97. # The group to which the global command FiFo should belong;
  98. # can be either a name or a numerical ID.
  99. # Default is 0
  100. #FifoGroup=xdmctl
  101. # The directory in which KDM should store persistent working data.
  102. # Default is "/var/lib/kdm"
  103. #DataDir=
  104. # The directory in which KDM should store users' .dmrc files. This is only
  105. # needed if the home directories are not readable before actually logging in
  106. # (like with AFS).
  107. # Default is ""
  108. #DmrcDir=/nfs-shared/var/dmrcs
  109.  
  110. [Xdmcp]
  111. # Whether KDM should listen to incoming XDMCP requests.
  112. # Default is true
  113. Enable=false
  114. # The UDP port on which KDM should listen for XDMCP requests. Do not change.
  115. # Default is 177
  116. #Port=177
  117. # File with the private keys of X-terminals. Required for XDM authentication.
  118. # Default is ""
  119. #KeyFile=/usr/pkg/share/kde/config/kdm/kdmkeys
  120. # XDMCP access control file in the usual XDM-Xaccess format.
  121. # Default is "/usr/pkg/share/kde/config/kdm/Xaccess"
  122. #Xaccess=
  123. # Number of seconds to wait for display to respond after the user has
  124. # selected a host from the chooser.
  125. # Default is 15
  126. #ChoiceTimeout=10
  127. # Strip domain name from remote display names if it is equal to the local
  128. # domain.
  129. # Default is true
  130. #RemoveDomainname=false
  131. # Use the numeric IP address of the incoming connection on multihomed hosts
  132. # instead of the host name.
  133. # Default is false
  134. #SourceAddress=true
  135. # The program which is invoked to dynamically generate replies to XDMCP
  136. # DirectQuery or BroadcastQuery requests.
  137. # If empty, no program is invoked and "Willing to manage" is sent.
  138. # Default is ""
  139. Willing=/usr/pkg/share/kde/config/kdm/Xwilling
  140.  
  141. [Shutdown]
  142. # The command (subject to word splitting) to run to halt the system.
  143. # Default is "/sbin/shutdown -h now"
  144. HaltCmd=/sbin/shutdown -p now
  145. # The command (subject to word splitting) to run to reboot the system.
  146. # Default is "/sbin/shutdown -r now"
  147. RebootCmd=/sbin/shutdown -r now
  148. # Whether it is allowed to shut down the system via the global command FiFo.
  149. # Default is false
  150. #AllowFifo=true
  151. # Whether it is allowed to abort active sessions when shutting down the
  152. # system via the global command FiFo.
  153. # Default is true
  154. #AllowFifoNow=false
  155. # The boot manager KDM should use for offering boot options in the
  156. # shutdown dialog.
  157. # "None" - no boot manager
  158. # "Grub" - Grub boot manager
  159. # "Lilo" - Lilo boot manager (Linux on i386 & x86-64 only)
  160. # Default is None
  161. #BootManager=Grub
  162.  
  163. # Rough estimations about how many seconds KDM will spend at most on
  164. # - opening a connection to the X-server (OpenTime) if the attempt
  165. # - times out: OpenTimeout
  166. # - is refused: OpenRepeat * OpenDelay
  167. # - starting a local X-server (ServerTime):
  168. # ServerAttempts * (ServerTimeout + OpenDelay)
  169. # - starting a display:
  170. # - local display: ServerTime + OpenTime
  171. # - foreign display: StartAttempts * OpenTime
  172. # - XDMCP display: OpenTime (repeated indefinitely by client)
  173.  
  174. # Core config for all displays
  175. [X-*-Core]
  176. # How long to wait before retrying to connect a display.
  177. # Default is 15
  178. #OpenDelay=15
  179. # How long to wait before timing out a display connection attempt.
  180. # Default is 120
  181. #OpenTimeout=120
  182. # How many connection attempts to make during a start attempt. Note that
  183. # a timeout aborts the entire start attempt.
  184. # Default is 5
  185. #OpenRepeat=5
  186. # Try at most that many times to start a display. If this fails, the display
  187. # is disabled.
  188. # Default is 4
  189. #StartAttempts=4
  190. # Ping remote display every that many minutes.
  191. # Default is 5
  192. #PingInterval=5
  193. # Wait for a Pong that many minutes.
  194. # Default is 5
  195. #PingTimeout=5
  196. # The name of this X-server's Xauth file.
  197. # If empty, a random name in the AuthDir directory will be used.
  198. # Default is ""
  199. #AuthFile=
  200. # Specify a file with X-resources for the greeter, chooser and background.
  201. # The KDE frontend does not use this file, so you do not need it unless you
  202. # use another background generator than krootimage.
  203. # Default is ""
  204. #Resources=
  205. # The xrdb program to use to read the above specified recources.
  206. # Subject to word splitting.
  207. # Default is "/usr/pkg/bin/xrdb"
  208. #Xrdb=
  209. # A program to run before the greeter is shown. Can be used to start an
  210. # xconsole or an alternative background generator. Subject to word splitting.
  211. # Default is ""
  212. Setup=/usr/pkg/share/kde/config/kdm/Xsetup
  213. # A program to run before a user session starts. Subject to word splitting.
  214. # Default is ""
  215. Startup=/usr/pkg/share/kde/config/kdm/Xstartup
  216. # A program to run after a user session exits. Subject to word splitting.
  217. # Default is ""
  218. Reset=/usr/pkg/share/kde/config/kdm/Xreset
  219. # The program which is run as the user which logs in. It is supposed to
  220. # interpret the session argument (see SessionsDirs) and start an appropriate
  221. # session according to it. Subject to word splitting.
  222. # Default is "/usr/pkg/bin/xterm -ls -T"
  223. Session=/usr/pkg/share/kde/config/kdm/Xsession
  224. # The program to run if Session fails.
  225. # Default is "/usr/pkg/bin/xterm"
  226. #FailsafeClient=
  227. # The PATH for the Session program.
  228. # Default is "/usr/local/bin:/usr/bin:/bin:/usr/pkg/bin:/usr/games"
  229. #UserPath=
  230. # The PATH for Setup, Startup and Reset, etc.
  231. # Default is "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/pkg/bin"
  232. #SystemPath=
  233. # The default system shell.
  234. # Default is "/bin/sh"
  235. #SystemShell=/bin/bash
  236. # Where to put the user's X-server authorization file if ~/.Xauthority
  237. # cannot be created.
  238. # Default is "/tmp"
  239. #UserAuthDir=
  240. # Whether to automatically restart sessions after X-server crashes.
  241. # Note that enabling this makes circumventing screen lockers other than
  242. # KDE's built-in one possible!
  243. # Default is false
  244. #AutoReLogin=true
  245. # Allow root logins?
  246. # Default is true
  247. AllowRootLogin=true
  248. # Allow to log in, when user has set an empty password?
  249. # Default is true
  250. AllowNullPasswd=false
  251. # Who is allowed to shut down the system. This applies both to the
  252. # greeter and to the command FiFo.
  253. # "None" - no "Shutdown..." menu entry is shown at all
  254. # "Root" - the root password must be entered to shut down
  255. # "All" - everybody can shut down the machine
  256. # Default is All
  257. AllowShutdown=All
  258. # Who is allowed to abort active sessions when shutting down.
  259. # "None" - no forced shutdown is allowed at all
  260. # "Root" - the root password must be entered to shut down forcibly
  261. # "All" - everybody can shut down the machine forcibly
  262. # Default is All
  263. #AllowSdForceNow=All
  264. # The default choice for the shutdown condition/timing.
  265. # "Schedule" - shut down after all active sessions exit (possibly at once)
  266. # "TryNow" - shut down, if no active sessions are open; otherwise, do nothing
  267. # "ForceNow" - shut down unconditionally
  268. # Default is Schedule
  269. #DefaultSdMode=ForceNow
  270. # How to offer shutdown scheduling options:
  271. # "Never" - not at all
  272. # "Optional" - as a button in the simple shutdown dialogs
  273. # "Always" - instead of the simple shutdown dialogs
  274. # Default is Never
  275. #ScheduledSd=Optional
  276. # The directories containing session type definitions in .desktop format.
  277. # Default is "/usr/pkg/share/kde/apps/kdm/sessions"
  278. #SessionsDirs=/etc/X11/sessions,/usr/share/xsessions
  279. # The file (relative to $HOME) to redirect the session output to. This is
  280. # a printf format string; one %s will be replaced with the display name.
  281. # Default is ".xsession-errors"
  282. ClientLogFile=.xsession-errors-%s
  283. # Whether KDM's built-in utmp/wtmp/lastlog registration should be used.
  284. # Default is true
  285. #UseSessReg=false
  286.  
  287. # Greeter config for all displays
  288. [X-*-Greeter]
  289. # Widget style of the greeter. "" means the built-in default which currently
  290. # is "Plastik".
  291. # Default is ""
  292. #GUIStyle=Windows
  293. # Widget color scheme of the greeter. "" means the built-in default which
  294. # currently is yellowish grey with some light blue and yellow elements.
  295. # Default is ""
  296. #ColorScheme=Pumpkin
  297. # What should be shown in the greeter's logo are:
  298. # "None" - nothing
  299. # "Logo" - the image specified by LogoPixmap
  300. # "Clock" - a neat analog clock
  301. # Default is Clock
  302. LogoArea=Logo
  303. # The image to show when LogoArea=Logo.
  304. # Default is ""
  305. LogoPixmap=/usr/pkg/share/kde/apps/kdm/pics/kdelogo.png
  306. # The relative coordinates (X,Y in percent) of the center of the greeter.
  307. # Default is "50,50"
  308. #GreeterPos=30,40
  309. # The screen the greeter should be displayed on in multi-headed and Xinerama
  310. # setups. The numbering starts with 0. For Xinerama, it corresponds to the
  311. # listing order in the active ServerLayout section of XF86Config; -1 means
  312. # to use the upper-left screen, -2 means to use the upper-right screen.
  313. # Default is 0
  314. #GreeterScreen=-1
  315. # The headline in the greeter. The following character pairs are replaced:
  316. # - %d -> current display
  317. # - %h -> host name, possibly with domain name
  318. # - %n -> node name, most probably the host name without domain name
  319. # - %s -> the operating system
  320. # - %r -> the operating system's version
  321. # - %m -> the machine (hardware) type
  322. # - %% -> a single %
  323. # Default is "Welcome to %s at %n"
  324. #GreetString=K Desktop Environment (%n)
  325. # Whether the fonts used in the greeter should be antialiased.
  326. # Default is false
  327. #AntiAliasing=true
  328. # The font for the greeter headline.
  329. # Default is "Serif,20,bold"
  330. #GreetFont=Serif,20,5,0,50,0
  331. # The normal font used in the greeter.
  332. # Default is "Sans Serif,10"
  333. #StdFont=Sans Serif,10,5,0,50,0
  334. # The font used for the "Login Failed" message.
  335. # Default is "Sans Serif,10,bold"
  336. #FailFont=Sans Serif,10,5,0,75,0
  337. # What to do with the Num Lock modifier for the time the greeter is running:
  338. # "Off" - turn off
  339. # "On" - turn on
  340. # "Keep" - do not change the state
  341. # Default is Keep
  342. #NumLock=Off
  343. # Language and locale to use in the greeter, encoded like $LC_LANG.
  344. # Default is "en_US"
  345. #Language=de_DE
  346. # Enable autocompletion in the username line edit.
  347. # Default is false
  348. #UserCompletion=true
  349. # Enable user list (names along with images) in the greeter.
  350. # Default is true
  351. #UserList=false
  352. # User selection for UserCompletion and UserList:
  353. # "NotHidden" - all users except those listed in HiddenUsers
  354. # "Selected" - only the users listed in SelectedUsers
  355. # Default is NotHidden
  356. #ShowUsers=Selected
  357. # For ShowUsers=Selected. @<group> means all users in that group.
  358. # Default is ""
  359. SelectedUsers=root,david
  360. # For ShowUsers=NotHidden. @<group> means all users in that group.
  361. # Default is ""
  362. HiddenUsers=guest,kmem,mail,operator,staff,sys,tty,wheel,cyrus,dbus,dirmngr,
  363. haldaemon,lp,polkit,pulse,toor
  364. # Special case of HiddenUsers: users with a non-zero UID less than this number
  365. # will not be shown as well.
  366. # Default is 0
  367. MinShowUID=1000
  368. # Complement to MinShowUID: users with a UID greater than this number will
  369. # not be shown as well.
  370. # Default is 65535
  371. MaxShowUID=65000
  372. # If false, the users are listed in the order they appear in /etc/passwd.
  373. # If true, they are sorted alphabetically.
  374. # Default is true
  375. #SortUsers=false
  376. # Specify, where the users' pictures should be taken from.
  377. # "AdminOnly" - from <FaceDir>/$USER.face[.icon]
  378. # "PreferAdmin" - prefer <FaceDir>, fallback on $HOME
  379. # "PreferUser" - ... and the other way round
  380. # "UserOnly" - from the user's $HOME/.face[.icon]
  381. # Default is AdminOnly
  382. #FaceSource=PreferUser
  383. # The directory containing the user images if FaceSource is not UserOnly.
  384. # Default is "/usr/pkg/share/kde/apps/kdm/faces"
  385. #FaceDir=/usr/share/faces
  386. # Specify, if/which user should be preselected for log in.
  387. # "None" - do not preselect any user
  388. # "Previous" - the user which successfully logged in last time
  389. # "Default" - the user specified in the DefaultUser option
  390. # Default is None
  391. #PreselectUser=Previous
  392. # If this is true, the password input line is focused automatically if
  393. # a user is preselected.
  394. # Default is false
  395. #FocusPasswd=true
  396. # The password input fields cloak the typed in text. Specify, how to do it:
  397. # "OneStar" - <literal>*</literal> is shown for every typed letter
  398. # "ThreeStars" - <literal>***</literal> is shown for every typed letter
  399. # "NoEcho" - nothing is shown at all, the cursor does not move
  400. # Default is OneStar
  401. #EchoMode=NoEcho
  402. # If true, krootimage will be automatically started by KDM; otherwise, the
  403. # Setup script should be used to setup the background.
  404. # Default is true
  405. #UseBackground=false
  406. # The configuration file to be used by krootimage.
  407. # Default is "/usr/pkg/share/kde/config/kdm/backgroundrc"
  408. #BackgroundCfg=
  409. # Hold the X-server grabbed the whole time the greeter is visible. This
  410. # may be more secure, but it will disable any background and other
  411. # X-clients started from the Setup script.
  412. # Default is false
  413. #GrabServer=true
  414. # How many seconds to wait for grab to succeed.
  415. # Default is 3
  416. #GrabTimeout=3
  417. # Warn, if display has no X-authorization (local auth cannot be created,
  418. # XDMCP display wants no auth, or display is foreign from StaticServers).
  419. # Default is true
  420. #AuthComplain=false
  421. # Random seed for forging saved session types, etc. of unknown users.
  422. # This value should be random but constant across the login domain.
  423. # Default is 0
  424. ForgingSeed=1294453469
  425. # Specify conversation plugins for the login dialog. Each plugin can be
  426. # specified as a base name (which expands to $kde_modulesdir/kgreet_$base)
  427. # or as a full pathname.
  428. # Default is "classic"
  429. #PluginsLogin=sign
  430. # Same as PluginsLogin, but for the shutdown dialog.
  431. # Default is "classic"
  432. #PluginsShutdown=modern
  433. # A list of options of the form Key=Value. The conversation plugins can query
  434. # these settings; it is up to them what possible keys are.
  435. # Default is ""
  436. #PluginOptions=SomeKey=randomvalue,Foo=bar
  437. # Show the "Console Login" action in the greeter (if ServerTTY/ConsoleTTYs
  438. # is configured).
  439. # Default is true
  440. #AllowConsole=false
  441. # A program to run while the greeter is visible. It is supposed to preload
  442. # as much as possible of the session that is going to be started (most
  443. # probably).
  444. # Default is ""
  445. Preloader=/usr/pkg/bin/preloadkde
  446. # Whether the greeter should be themed.
  447. # Default is false
  448. #UseTheme=true
  449. # The theme to use for the greeter. Can point to either a directory or an XML
  450. # file.
  451. # Default is ""
  452. Theme=/usr/pkg/share/kde/apps/kdm/themes/circles
  453.  
  454. # Core config for local displays
  455. [X-:*-Core]
  456. # How often to try to run the X-server. Running includes executing it and
  457. # waiting for it to come up.
  458. # Default is 1
  459. #ServerAttempts=1
  460. # How long to wait for a local X-server to come up.
  461. # Default is 15
  462. #ServerTimeout=15
  463. # The command line to start the X-server, without display number and VT spec.
  464. # This string is subject to word splitting.
  465. # Default is "/usr/pkg/bin/X"
  466. ServerCmd=/usr/pkg/bin/X
  467. # Additional arguments for the X-servers for local sessions.
  468. # This string is subject to word splitting.
  469. # Default is ""
  470. ServerArgsLocal=-nolisten tcp
  471. # Additional arguments for the X-servers for remote sessions.
  472. # This string is subject to word splitting.
  473. # Default is ""
  474. #ServerArgsRemote=
  475. # Restart instead of resetting the local X-server after session exit.
  476. # Use it if the server leaks memory etc.
  477. # Default is false
  478. #TerminateServer=true
  479. # The signal needed to reset the local X-server.
  480. # Default is 1 (SIGHUP)
  481. #ResetSignal=1
  482. # The signal needed to terminate the local X-server.
  483. # Default is 15 (SIGTERM)
  484. #TermSignal=15
  485. # Create X-authorizations for local displays.
  486. # Default is true
  487. #Authorize=false
  488. # Which X-authorization mechanisms should be used.
  489. # Default is "MIT-MAGIC-COOKIE-1"
  490. #AuthNames=
  491. # Need to reset the X-server to make it read initial Xauth file.
  492. # Default is false
  493. #ResetForAuth=true
  494. # See above
  495. AllowNullPasswd=true
  496. # See above
  497. AllowShutdown=All
  498. # Enable password-less logins on this display. USE WITH EXTREME CARE!
  499. # Default is false
  500. #NoPassEnable=true
  501. # The users that do not need to provide a password to log in. NEVER list root!
  502. # "*" means all non-root users. @<group> means all users in that group.
  503. # Default is ""
  504. #NoPassUsers=fred,ethel
  505.  
  506. # Greeter config for local displays
  507. [X-:*-Greeter]
  508. # See above
  509. PreselectUser=Previous
  510. # See above
  511. FocusPasswd=true
  512. # Specify whether the greeter of local displays should start up in host chooser
  513. # (remote) or login (local) mode and whether it is allowed to switch to the
  514. # other mode.
  515. # "LocalOnly" - only local login possible
  516. # "DefaultLocal" - start up in local mode, but allow switching to remote mode
  517. # "DefaultRemote" - ... and the other way round
  518. # "RemoteOnly" - only choice of remote host possible
  519. # Default is LocalOnly
  520. LoginMode=DefaultLocal
  521. # A list of hosts to be automatically added to the remote login menu. The
  522. # special name "*" means broadcast.
  523. # Default is "*"
  524. #ChooserHosts=*,ugly,sky,dino,kiste.local,login.crap.com
  525. # Show the "Restart X Server"/"Close Connection" action in the greeter.
  526. # Default is true
  527. AllowClose=false
  528.  
  529. # Core config for 1st local display
  530. [X-:0-Core]
  531. # The TTY line (without /dev/) the X-server covers physically.
  532. # Default is ""
  533. ServerTTY=
  534. # Enable automatic login. USE WITH EXTREME CARE!
  535. # Default is false
  536. #AutoLoginEnable=true
  537. # If true, auto-login after logout. If false, auto-login is performed only
  538. # when a display session starts up.
  539. # Default is false
  540. #AutoLoginAgain=true
  541. # The delay in seconds before automatic login kicks in.
  542. # Default is 0
  543. #AutoLoginDelay=10
  544. # The user to log in automatically. NEVER specify root!
  545. # Default is ""
  546. #AutoLoginUser=fred
  547. # The password for the user to log in automatically. This is NOT required
  548. # unless the user is logged into a NIS or Kerberos domain. If you use this
  549. # option, you should "chmod 600 kdmrc" for obvious reasons.
  550. # Default is ""
  551. #AutoLoginPass=secret!
  552. # Immediately lock the automatically started session. This works only with
  553. # KDE sessions.
  554. # Default is false
  555. #AutoLoginLocked=true
  556. # See above
  557. ClientLogFile=.xsession-errors
  558.  
  559. # Greeter config for 1st local display
  560. [X-:0-Greeter]
  561. # See above
  562. #PreselectUser=Default
  563. # The user to preselect if PreselectUser=Default.
  564. # Default is ""
  565. #DefaultUser=johndoe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement