blurry.rasi 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "Noto Sans Bold 10";
  11. show-icons: true;
  12. icon-theme: "Papirus";
  13. display-drun: "";
  14. drun-display-format: "{name}";
  15. disable-history: false;
  16. sidebar-mode: false;
  17. }
  18. * {
  19. background: #00000000;
  20. background-alt: #00000000;
  21. background-bar: #f2f2f215;
  22. foreground: #f2f2f2EE;
  23. accent: #3DAEE966;
  24. }
  25. window {
  26. transparency: "real";
  27. background-color: @background;
  28. text-color: @foreground;
  29. border: 0px;
  30. border-color: @border;
  31. border-radius: 0px;
  32. width: 40%;
  33. location: center;
  34. x-offset: 0;
  35. y-offset: 0;
  36. }
  37. prompt {
  38. enabled: true;
  39. padding: 0.30% 1% 0% -0.5%;
  40. background-color: @background-alt;
  41. text-color: @foreground;
  42. font: "FantasqueSansMono Nerd Font 12";
  43. }
  44. entry {
  45. background-color: @background-alt;
  46. text-color: @foreground;
  47. placeholder-color: @foreground;
  48. expand: true;
  49. horizontal-align: 0;
  50. placeholder: "Search";
  51. padding: 0.10% 0% 0% 0%;
  52. blink: true;
  53. }
  54. inputbar {
  55. children: [ prompt, entry ];
  56. background-color: @background-bar;
  57. text-color: @foreground;
  58. expand: false;
  59. border: 0% 0% 0% 0%;
  60. border-radius: 12px;
  61. border-color: @accent;
  62. margin: 0% 0% 0% 0%;
  63. padding: 1.5%;
  64. }
  65. listview {
  66. background-color: @background-alt;
  67. columns: 5;
  68. lines: 3;
  69. spacing: 0%;
  70. cycle: false;
  71. dynamic: true;
  72. layout: vertical;
  73. }
  74. mainbox {
  75. background-color: @background-alt;
  76. border: 0% 0% 0% 0%;
  77. border-radius: 0% 0% 0% 0%;
  78. border-color: @accent;
  79. children: [ inputbar, listview ];
  80. spacing: 2%;
  81. padding: 2% 1% 2% 1%;
  82. }
  83. element {
  84. background-color: @background-alt;
  85. text-color: @foreground;
  86. orientation: vertical;
  87. border-radius: 0%;
  88. padding: 2% 0% 2% 0%;
  89. }
  90. element-icon {
  91. background-color: @background;
  92. text-color: inherit;
  93. horizontal-align: 0.5;
  94. vertical-align: 0.5;
  95. size: 64px;
  96. border: 0px;
  97. }
  98. element-text {
  99. background-color: @background;
  100. text-color: inherit;
  101. expand: true;
  102. horizontal-align: 0.5;
  103. vertical-align: 0.5;
  104. margin: 0.5% 0.5% -0.5% 0.5%;
  105. }
  106. element selected {
  107. background-color: @background-bar;
  108. text-color: @foreground;
  109. border: 0% 0% 0% 0%;
  110. border-radius: 12px;
  111. border-color: @accent;
  112. }