gnome_do.rasi 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "FantasqueSansMono Nerd Font 12";
  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. /* -- Classical -- */
  19. * {
  20. background: #27639AFF;
  21. background-alt: #00000000;
  22. background-bar: #f2f2f240;
  23. foreground: #f2f2f2EE;
  24. accent: #3DAEE966;
  25. }
  26. /* -- Transparent -- */
  27. /*
  28. * {
  29. background: #00000000;
  30. background-alt: #00000000;
  31. background-bar: #f2f2f215;
  32. foreground: #f2f2f2EE;
  33. accent: #3DAEE966;
  34. }
  35. */
  36. /* -- Light -- */
  37. /*
  38. * {
  39. background: #e5e5e5ff;
  40. background-alt: #00000000;
  41. background-bar: #20202040;
  42. foreground: #404040EE;
  43. accent: #3DAEE966;
  44. }
  45. */
  46. /* -- Dark -- */
  47. /*
  48. * {
  49. background: #252525ff;
  50. background-alt: #00000000;
  51. background-bar: #10101040;
  52. foreground: #e5e5e5EE;
  53. accent: #3DAEE966;
  54. }
  55. */
  56. /* -- Black -- */
  57. /*
  58. * {
  59. background: #000000ff;
  60. background-alt: #00000000;
  61. background-bar: #101010ff;
  62. foreground: #e5e5e5EE;
  63. accent: #3DAEE966;
  64. }
  65. */
  66. window {
  67. transparency: "real";
  68. background-color: @background;
  69. text-color: @foreground;
  70. border: 0px;
  71. border-color: @border;
  72. border-radius: 25px;
  73. width: 26%;
  74. location: center;
  75. x-offset: 0;
  76. y-offset: 0;
  77. }
  78. prompt {
  79. enabled: false;
  80. padding: 0%;
  81. background-color: @background-alt;
  82. text-color: @foreground;
  83. font: "FantasqueSansMono Nerd Font 12";
  84. }
  85. entry {
  86. background-color: @background-alt;
  87. text-color: @foreground;
  88. placeholder-color: @foreground;
  89. expand: true;
  90. horizontal-align: 0.5;
  91. placeholder: " Search";
  92. padding: 0% 0% 0% 0%;
  93. blink: true;
  94. }
  95. inputbar {
  96. children: [ prompt, entry ];
  97. background-color: @background;
  98. text-color: @foreground;
  99. expand: false;
  100. border: 0% 0% 0% 0%;
  101. border-radius: 0px;
  102. border-color: @accent;
  103. margin: 0% 0% 0% 0%;
  104. padding: 0%;
  105. }
  106. listview {
  107. background-color: @background-alt;
  108. columns: 2;
  109. lines: 1;
  110. spacing: 0%;
  111. cycle: false;
  112. dynamic: true;
  113. layout: vertical;
  114. }
  115. mainbox {
  116. background-color: @background-alt;
  117. border: 0% 0% 0% 0%;
  118. border-radius: 0% 0% 0% 0%;
  119. border-color: @accent;
  120. children: [ inputbar, listview ];
  121. spacing: 2%;
  122. padding: 2% 1% 2% 1%;
  123. }
  124. element {
  125. background-color: @background-alt;
  126. text-color: @foreground;
  127. orientation: vertical;
  128. border-radius: 0%;
  129. padding: 2.5% 0% 2.5% 0%;
  130. }
  131. element-icon {
  132. background-color: @background-alt;
  133. text-color: inherit;
  134. horizontal-align: 0.5;
  135. vertical-align: 0.5;
  136. size: 128px;
  137. border: 0px;
  138. }
  139. element-text {
  140. background-color: @background-alt;
  141. text-color: inherit;
  142. expand: true;
  143. horizontal-align: 0.5;
  144. vertical-align: 0.5;
  145. margin: 0.5% 0.5% -0.5% 0.5%;
  146. }
  147. element selected {
  148. background-color: @background-bar;
  149. text-color: @foreground;
  150. border: 0% 0% 0% 0%;
  151. border-radius: 15px;
  152. border-color: @accent;
  153. }