rofidmenu.rasi 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*******************************************************
  2. * ROFI configs i3 Apps menu for EndeavourOS
  3. * Maintainer: joekamprad <joekamprad@endeavouros.com>
  4. *******************************************************/
  5. configuration {
  6. font: "Noto Sans Regular 10";
  7. show-icons: true;
  8. icon-theme: "Qogir";
  9. display-drun: "Apps";
  10. drun-display-format: "{name}";
  11. scroll-method: 0;
  12. disable-history: false;
  13. sidebar-mode: false;
  14. }
  15. @import "~/.config/rofi/arc_dark_transparent_colors.rasi"
  16. window {
  17. background-color: @background;
  18. border: 0;
  19. padding: 30;
  20. }
  21. listview {
  22. lines: 10;
  23. columns: 3;
  24. }
  25. mainbox {
  26. border: 0;
  27. padding: 0;
  28. }
  29. message {
  30. border: 2px 0px 0px ;
  31. border-color: @separatorcolor;
  32. padding: 1px ;
  33. }
  34. textbox {
  35. text-color: @foreground;
  36. }
  37. listview {
  38. fixed-height: 0;
  39. border: 8px 0px 0px ;
  40. border-color: @separatorcolor;
  41. spacing: 8px ;
  42. scrollbar: false;
  43. padding: 2px 0px 0px ;
  44. }
  45. element {
  46. border: 0;
  47. padding: 1px ;
  48. }
  49. element-text {
  50. background-color: inherit;
  51. text-color: inherit;
  52. }
  53. element.normal.normal {
  54. background-color: @normal-background;
  55. text-color: @normal-foreground;
  56. }
  57. element.normal.urgent {
  58. background-color: @urgent-background;
  59. text-color: @urgent-foreground;
  60. }
  61. element.normal.active {
  62. background-color: @active-background;
  63. text-color: @active-foreground;
  64. }
  65. element.selected.normal {
  66. background-color: @selected-normal-background;
  67. text-color: @selected-normal-foreground;
  68. }
  69. element.selected.urgent {
  70. background-color: @selected-urgent-background;
  71. text-color: @selected-urgent-foreground;
  72. }
  73. element.selected.active {
  74. background-color: @selected-active-background;
  75. text-color: @selected-active-foreground;
  76. }
  77. element.alternate.normal {
  78. background-color: @alternate-normal-background;
  79. text-color: @alternate-normal-foreground;
  80. }
  81. element.alternate.urgent {
  82. background-color: @alternate-urgent-background;
  83. text-color: @alternate-urgent-foreground;
  84. }
  85. element.alternate.active {
  86. background-color: @alternate-active-background;
  87. text-color: @alternate-active-foreground;
  88. }
  89. scrollbar {
  90. width: 4px ;
  91. border: 0;
  92. handle-color: @normal-foreground;
  93. handle-width: 8px ;
  94. padding: 0;
  95. }
  96. mode-switcher {
  97. border: 2px 0px 0px ;
  98. border-color: @separatorcolor;
  99. }
  100. button {
  101. spacing: 0;
  102. text-color: @normal-foreground;
  103. }
  104. button.selected {
  105. background-color: @selected-normal-background;
  106. text-color: @selected-normal-foreground;
  107. }
  108. inputbar {
  109. spacing: 0;
  110. text-color: @normal-foreground;
  111. padding: 1px ;
  112. }
  113. case-indicator {
  114. spacing: 0;
  115. text-color: @normal-foreground;
  116. }
  117. entry {
  118. spacing: 0;
  119. text-color: @normal-foreground;
  120. }
  121. prompt {
  122. spacing: 0;
  123. text-color: @normal-foreground;
  124. }
  125. inputbar {
  126. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  127. }
  128. textbox-prompt-colon {
  129. expand: false;
  130. str: ":";
  131. margin: 0px 0.3em 0em 0em ;
  132. text-color: @normal-foreground;
  133. }