Advertisement
constantin-net

rofi files

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