Advertisement
voyeg3r

sddm.conf

Sep 11th, 2022
1,067
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.20 KB | None | 0 0
  1. # /etc/sddm.conf.d/sddm.conf
  2.  
  3. [Autologin]
  4. # Whether sddm should automatically log back into sessions when they exit
  5. Relogin=false
  6.  
  7. # Name of session file for autologin session (if empty try last logged in)
  8. Session=
  9.  
  10. # Username for autologin session
  11. User=
  12.  
  13.  
  14. [General]
  15. # Halt command
  16. HaltCommand=/usr/bin/shutdown now
  17.  
  18. # Input method module
  19. InputMethod=qtvirtualkeyboard
  20.  
  21. # Comma-separated list of Linux namespaces for user session to enter
  22. Namespaces=
  23.  
  24. # Initial NumLock state. Can be on, off or none.
  25. # If property is set to none, numlock won't be changed
  26. # NOTE: Currently ignored if autologin is enabled.
  27. Numlock=none
  28.  
  29. # Reboot command
  30. RebootCommand=/usr/bin/shutdown -r  now
  31.  
  32.  
  33. [Theme]
  34. # Current theme name
  35. #Current=sddm_wynn-theme
  36. Current=sugar-dark
  37.  
  38. # Cursor theme used in the greeter
  39. CursorTheme=Breeze Obsidian
  40.  
  41. # Number of users to use as threshold
  42. # above which avatars are disabled
  43. # unless explicitly enabled with EnableAvatars
  44. DisableAvatarsThreshold=7
  45.  
  46. # Enable display of custom user avatars
  47. EnableAvatars=true
  48.  
  49. # Global directory for user avatars
  50. # The files should be named <username>.face.icon
  51. FacesDir=/usr/share/sddm/faces
  52.  
  53. # Theme directory path
  54. ThemeDir=/usr/share/sddm/themes
  55.  
  56.  
  57. [Users]
  58. # Default $PATH for logged in users
  59. DefaultPath=/usr/local/bin:/usr/bin:/bin
  60.  
  61. # Comma-separated list of shells.
  62. # Users with these shells as their default won't be listed
  63. HideShells=
  64.  
  65. # Comma-separated list of users that should not be listed
  66. HideUsers=
  67.  
  68. # Maximum user id for displayed users
  69. MaximumUid=60000
  70.  
  71. # Minimum user id for displayed users
  72. MinimumUid=1000
  73.  
  74. # Remember the session of the last successfully logged in user
  75. RememberLastSession=true
  76.  
  77. # Remember the last successfully logged in user
  78. RememberLastUser=true
  79.  
  80. # When logging in as the same user twice, restore the original session, rather than create a new one
  81. ReuseSession=false
  82.  
  83.  
  84. [Wayland]
  85. # Enable Qt's automatic high-DPI scaling
  86. EnableHiDPI=false
  87.  
  88. # Path to a script to execute when starting the desktop session
  89. SessionCommand=/usr/share/sddm/scripts/wayland-session
  90.  
  91. # Directory containing available Wayland sessions
  92. SessionDir=/usr/share/wayland-sessions
  93.  
  94. # Path to the user session log file
  95. SessionLogFile=.local/share/sddm/wayland-session.log
  96.  
  97.  
  98. [X11]
  99. # Path to a script to execute when starting the display server
  100. DisplayCommand=/usr/share/sddm/scripts/Xsetup
  101.  
  102. # Path to a script to execute when stopping the display server
  103. DisplayStopCommand=/usr/share/sddm/scripts/Xstop
  104.  
  105. # Enable Qt's automatic high-DPI scaling
  106. EnableHiDPI=false
  107.  
  108. # The lowest virtual terminal number that will be used.
  109. MinimumVT=7
  110.  
  111. # Arguments passed to the X server invocation
  112. ServerArguments=-nolisten tcp
  113.  
  114. # Path to X server binary
  115. ServerPath=/usr/bin/X
  116.  
  117. # Path to a script to execute when starting the desktop session
  118. SessionCommand=/usr/share/sddm/scripts/Xsession
  119.  
  120. # Directory containing available X sessions
  121. SessionDir=/usr/share/xsessions
  122.  
  123. # Path to the user session log file
  124. SessionLogFile=.local/share/sddm/xorg-session.log
  125.  
  126. # Path to the Xauthority file
  127. UserAuthFile=.Xauthority
  128.  
  129. # Path to xauth binary
  130. XauthPath=/usr/bin/xauth
  131.  
  132. # Path to Xephyr binary
  133. XephyrPath=/usr/bin/Xephyr
  134.  
  135.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement