Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2024
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. background {
  2. monitor =
  3. path = $HOME/.cache/blurred_wallpaper.png # only png supported for now
  4. }
  5.  
  6. input-field {
  7. monitor =
  8. size = 200, 50
  9. outline_thickness = 3
  10. dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8
  11. dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0
  12. dots_center = true
  13. dots_rounding = -1 # -1 default circle, -2 follow input-field rounding
  14. outer_color = rgb(151515)
  15. inner_color = rgb(200, 200, 200)
  16. font_color = rgb(10, 10, 10)
  17. fade_on_empty = true
  18. fade_timeout = 1000 # Milliseconds before fade_on_empty is triggered.
  19. placeholder_text = <i>Input Password...</i> # Text rendered in the input box when it's empty.
  20. hide_input = false
  21. rounding = -1 # -1 means complete rounding (circle/oval)
  22. check_color = rgb(204, 136, 34)
  23. fail_color = rgb(204, 34, 34) # if authentication failed, changes outer_color and fail message color
  24. fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i> # can be set to empty
  25. fail_transition = 300 # transition time in ms between normal outer_color and fail_color
  26. capslock_color = -1
  27. numlock_color = -1
  28. bothlock_color = -1 # when both locks are active. -1 means don't change outer color (same for above)
  29. invert_numlock = false # change color if numlock is off
  30. swap_font_color = false # see below
  31. position = 0, -20
  32. halign = center
  33. valign = center
  34. }
  35.  
  36. label {
  37. monitor =
  38. text = cmd[update:1000] echo "$TIME"
  39. color = rgba(200, 200, 200, 1.0)
  40. font_size = 55
  41. font_family = Fira Semibold
  42. position = -100, -200
  43. halign = right
  44. valign = bottom
  45. shadow_passes = 5
  46. shadow_size = 10
  47. }
  48.  
  49. label {
  50. monitor =
  51. text = $USER
  52. color = rgba(200, 200, 200, 1.0)
  53. font_size = 20
  54. font_family = Fira Semibold
  55. position = -100, 160
  56. halign = right
  57. valign = bottom
  58. shadow_passes = 5
  59. shadow_size = 10
  60. }
  61. ~
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement