Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. # LightDM Mini Greeter Configuration
  2. #
  3. # To test your configuration out, run: lightdm --test-mode
  4.  
  5. [greeter]
  6. # The user to login as.
  7. user = CHANGE_ME
  8. # Whether to show the password input's label.
  9. show-password-label = true
  10. # The text of the password input's label.
  11. password-label-text = Password:
  12. # Show a blinking cursor in the password input.
  13. show-input-cursor = true
  14.  
  15.  
  16. [greeter-hotkeys]
  17. # The modifier key used to trigger hotkeys. Possible values are:
  18. # "alt", "control" or "meta"
  19. # meta is also known as the "Windows"/"Super" key
  20. mod-key = meta
  21. # Power management shortcuts (single-key, case-sensitive)
  22. shutdown-key = s
  23. restart-key = r
  24. hibernate-key = h
  25. suspend-key = u
  26.  
  27.  
  28. [greeter-theme]
  29. # A color from X11's `rgb.txt` file, a quoted hex string(`"#rrggbb"`) or a
  30. # RGB color(`rgb(r,g,b)`) are all acceptable formats.
  31.  
  32. # The font to use for all text
  33. font = "Sans"
  34. # The font size to use for all text
  35. font-size = 1em
  36. # The default text color
  37. text-color = "#080800"
  38. # The color of the error text
  39. error-color = "#F8F8F0"
  40. # An absolute path to an optional background image.
  41. # The image will be displayed centered & unscaled.
  42. background-image = ""
  43. # The screen's background color.
  44. background-color = "#1B1D1E"
  45. # The password window's background color
  46. window-color = "#F92672"
  47. # The color of the password window's border
  48. border-color = "#080800"
  49. # The width of the password window's border.
  50. # A trailing `px` is required.
  51. border-width = 2px
  52. # The pixels of empty space around the password input.
  53. # Do not include a trailing `px`.
  54. layout-space = 15
  55. # The color of the text in the password input.
  56. password-color = "#F8F8F0"
  57. # The background color of the password input.
  58. password-background-color = "#1B1D1E"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement