Advertisement
techmik

kdmrc

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