Advertisement
constantin-net

rofi apps menu

Jul 22nd, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. configuration {
  2. font: "Helvetica Neue 9";
  3. show-icons: true;
  4. icon-theme: "Moblin";
  5. cycle: false;
  6. disable-history: false;
  7. modi: "drun";
  8. terminal: "rofi-sensible-terminal";
  9. me-select-entry: "MouseDPrimary";
  10. me-accept-entry: "MousePrimary";
  11. separator-style: "none";
  12. display-drun: "Apps";
  13. scroll-method: 0;
  14. sort: true;
  15. }
  16.  
  17.  
  18. /**
  19. * ROFI Color theme
  20. */
  21. * {
  22. spacing: 8px;
  23. foreground: #ffffff;
  24. background: #3F3F3F;
  25. separatorcolor: #000000;
  26. bordercolor: @background;
  27.  
  28. border-color: @bordercolor;
  29. background-color: @background;
  30. text-color: @foreground;
  31.  
  32. normal-foreground: @foreground;
  33. active-foreground: #FFFFFF;
  34. urgent-foreground: #161719;
  35.  
  36. alternate-normal-foreground: @normal-foreground;
  37. alternate-active-foreground: @active-foreground;
  38. alternate-urgent-foreground: @urgent-foreground;
  39.  
  40. normal-background: #4C4C4C;
  41. active-background: #737373;
  42. urgent-background: @normal-background;
  43.  
  44. alternate-normal-background: @normal-background;
  45. alternate-urgent-background: @active-background;
  46. alternate-active-background: @urgent-background;
  47.  
  48. selected-normal-foreground: #FFFFFF;
  49. selected-active-foreground: @selected-normal-foreground;
  50. selected-urgent-foreground: @selected-normal-foreground;
  51.  
  52. selected-normal-background: #737373;
  53. selected-active-background: @selected-normal-background;
  54. selected-urgent-background: @selected-normal-background;
  55.  
  56. lightfg: #000000;
  57. lightbg: #000000;
  58.  
  59. }
  60. #window {
  61. width: 100%;
  62. height: 100%;
  63. padding: 10% 1% 1% 10%;
  64. border: 0;
  65. }
  66. #inputbar {
  67. border: 0 0 0 0;
  68. children: [prompt,entry];
  69. }
  70.  
  71. #prompt {
  72. padding: 16px;
  73. border: 0 0 0 0;
  74. font: "Helvetica Neue 20";
  75. }
  76.  
  77. #entry {
  78. padding: 16px;
  79. font: "Helvetica Neue 20";
  80. placeholder: " search";
  81. placeholder-color: @normal-background;
  82. }
  83.  
  84. #listview {
  85. cycle: false;
  86. margin: 10px 10px 10px 10px;
  87. scrollbar: true;
  88. scrollbar-width: 8;
  89. dynamic: false;
  90. fixed-columns: true;
  91. columns: 10;
  92. lines: 6;
  93. }
  94.  
  95. #element {
  96. orientation: vertical;
  97. spacing: 5px;
  98. }
  99.  
  100. #element-icon {
  101. size: 24;
  102. padding: 30px;
  103. }
  104.  
  105. #element-text {
  106. horizontal-align: 0;
  107. padding: 0px 35px 3px 3px;
  108. }
  109.  
  110. #element normal.normal {
  111. background-color: @normal-background;
  112. text-color: @normal-foreground;
  113. }
  114.  
  115. #element alternate.normal {
  116. background-color: @alternate-normal-background;
  117. text-color: @alternate-normal-foreground;
  118. }
  119.  
  120. #element normal.active {
  121. background-color: @active-background;
  122. text-color: @active-foreground;
  123. }
  124.  
  125. #element alternate.active {
  126. background-color: @alternate-active-background;
  127. text-color: @alternate-active-foreground;
  128. }
  129.  
  130. #element normal.urgent {
  131. background-color: @urgent-background;
  132. text-color: @urgent-foreground;
  133. }
  134.  
  135. #element alternate.urgent {
  136. background-color: @alternate-urgent-background;
  137. text-color: @alternate-urgent-foreground;
  138. }
  139.  
  140. #element selected {
  141. background-color: @selected-normal-background;
  142. text-color: @selected-normal-foreground;
  143. border: 2px;
  144. }
  145.  
  146. #scrollbar {
  147. padding: 0;
  148. border: 0;
  149. handle-width: 10px ;
  150. handle-color: @normal-background;
  151. background-color: @active-background;
  152. border-color: @bordercolor;
  153. }
  154.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement