kde_krunner.rasi 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 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. /* -- Breeze Light-- */
  19. * {
  20. background: #EFF0F1FF;
  21. background-alt: #00000000;
  22. background-bar: #93CEE999;
  23. foreground: #000000A6;
  24. accent: #3DAEE9FF;
  25. }
  26. /* -- Breeze Dark-- */
  27. /*
  28. * {
  29. background: #31363bff;
  30. background-alt: #00000000;
  31. background-bar: #3daee966;
  32. foreground: #f5f5f5e6;
  33. accent: #1d99f3ff;
  34. }
  35. */
  36. /* -- Black-- */
  37. /*
  38. * {
  39. background: #000000ff;
  40. background-alt: #00000000;
  41. background-bar: #3daee966;
  42. foreground: #f5f5f5b3;
  43. accent: #1d99f3ff;
  44. }
  45. */
  46. window {
  47. transparency: "real";
  48. background-color: @background;
  49. text-color: @foreground;
  50. border: 0px;
  51. border-color: @border;
  52. border-radius: 0px;
  53. width: 38%;
  54. location: north;
  55. x-offset: 0;
  56. y-offset: 0;
  57. }
  58. prompt {
  59. enabled: true;
  60. padding: 0.30% 0.75% 0% -0.5%;
  61. background-color: @background-alt;
  62. text-color: @foreground;
  63. font: "FantasqueSansMono Nerd Font 10";
  64. }
  65. entry {
  66. background-color: @background-alt;
  67. text-color: @foreground;
  68. placeholder-color: @foreground;
  69. expand: true;
  70. horizontal-align: 0;
  71. placeholder: "Search";
  72. padding: -0.15% 0% 0% 0%;
  73. blink: true;
  74. }
  75. inputbar {
  76. children: [ prompt, entry ];
  77. background-color: @background;
  78. text-color: @foreground;
  79. expand: false;
  80. border: 0.1%;
  81. border-radius: 4px;
  82. border-color: @accent;
  83. margin: 0% 0% 0% 0%;
  84. padding: 1%;
  85. }
  86. listview {
  87. background-color: @background-alt;
  88. columns: 1;
  89. lines: 7;
  90. spacing: 0.5%;
  91. cycle: false;
  92. dynamic: true;
  93. layout: vertical;
  94. }
  95. mainbox {
  96. background-color: @background-alt;
  97. border: 0% 0% 0% 0%;
  98. border-radius: 0% 0% 0% 0%;
  99. border-color: @accent;
  100. children: [ inputbar, listview ];
  101. spacing: 1%;
  102. padding: 1% 0.5% 1% 0.5%;
  103. }
  104. element {
  105. background-color: @background-alt;
  106. text-color: @foreground;
  107. orientation: horizontal;
  108. border-radius: 0%;
  109. padding: 0.5%;
  110. }
  111. element-icon {
  112. background-color: @background-alt;
  113. text-color: inherit;
  114. horizontal-align: 0.5;
  115. vertical-align: 0.5;
  116. size: 32px;
  117. border: 0px;
  118. }
  119. element-text {
  120. background-color: @background-alt;
  121. text-color: inherit;
  122. expand: true;
  123. horizontal-align: 0;
  124. vertical-align: 0.5;
  125. margin: 0% 0% 0% 0.25%;
  126. }
  127. element selected {
  128. background-color: @background-bar;
  129. text-color: @foreground;
  130. border: 0.1%;
  131. border-radius: 4px;
  132. border-color: @accent;
  133. }