Advertisement
Dobbie03

topbar.rasi

Dec 17th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. configuration {
  2. lines: 7;
  3. font: "Pilcrow 20";
  4. fixed-num-lines: false;
  5. show-icons: false;
  6. sidebar-mode: false;
  7. line-padding: 10;
  8. separator-style: "none";
  9. scrollbar-width: 0;
  10. display-run: "run";
  11. display-drun: "run";
  12. }
  13.  
  14. * {
  15. selected-normal-foreground: rgba(255, 255, 255, 100%);
  16. foreground: rgba(255, 255, 255, 100%);
  17. normal-foreground: @foreground;
  18. normal-background: #1a1a1a;
  19. alternate-normal-background: @normal-background;
  20. red: rgba(220, 50, 47, 100%);
  21. selected-urgent-foreground: rgba(253, 246, 227, 100%);
  22. blue: rgba(38, 139, 210, 100%);
  23. urgent-foreground: rgba(255, 255, 255, 100%);
  24. alternate-urgent-background: rgba(22, 22, 22, 100%);
  25. active-foreground: rgba(255, 255, 255, 100%);
  26. lightbg: rgba(238, 232, 213, 100%);
  27. selected-active-foreground: rgba(255, 255, 255, 100%);
  28. alternate-active-background: rgba(22, 22, 22, 100%);
  29. background: rgba(22, 22, 22, 100%);
  30. alternate-normal-foreground: @foreground;
  31. lightfg: rgba(88, 104, 117, 100%);
  32. selected-normal-background: #333333;
  33. border-color: rgba(0, 43, 54, 100%);
  34. urgent-background: rgba(22, 22, 22, 100%);
  35. selected-urgent-background: rgba(220, 50, 47, 100%);
  36. alternate-urgent-foreground: @urgent-foreground;
  37. background-color: rgba(0, 0, 0, 0%);
  38. alternate-active-foreground: @active-foreground;
  39. active-background: rgba(22, 22, 22, 100%);
  40. selected-active-background: rgba(35, 35, 35, 100%);
  41. }
  42.  
  43. #window {
  44. border: 0;
  45. padding: 0;
  46. location: north;
  47. width: 100%;
  48. }
  49.  
  50. #mainbox {
  51. border: 0;
  52. padding: 0;
  53. }
  54.  
  55. #message {
  56. border: 0px;
  57. border-color: @separatorcolor;
  58. padding: 10px;
  59. }
  60.  
  61. #textbox {
  62. text-color: @foreground;
  63. }
  64.  
  65. #listview {
  66. fixed-height: 0;
  67. border: 0px;
  68. border-color: @separatorcolor;
  69. spacing: 0px;
  70. scrollbar: false;
  71. padding: 0px 0px 0px;
  72. }
  73.  
  74. #element {
  75. border: 0;
  76. padding: 10px;
  77. margin: 0 303px 0 349px;
  78. }
  79.  
  80. #element.normal.normal {
  81. background-color: @normal-background;
  82. text-color: @normal-foreground;
  83. }
  84.  
  85. #element.normal.urgent {
  86. background-color: @urgent-background;
  87. text-color: @urgent-foreground;
  88. }
  89.  
  90. #element.normal.active {
  91. background-color: @active-background;
  92. text-color: @active-foreground;
  93. }
  94.  
  95. #element.selected.normal {
  96. background-color: @selected-normal-background;
  97. text-color: @selected-normal-foreground;
  98. }
  99.  
  100. #element.selected.urgent {
  101. background-color: @selected-urgent-background;
  102. text-color: @selected-urgent-foreground;
  103. }
  104.  
  105. #element.selected.active {
  106. background-color: @selected-active-background;
  107. text-color: @selected-active-foreground;
  108. }
  109.  
  110. #element.alternate.normal {
  111. background-color: @alternate-normal-background;
  112. text-color: @alternate-normal-foreground;
  113. }
  114.  
  115. #element.alternate.urgent {
  116. background-color: @alternate-urgent-background;
  117. text-color: @alternate-urgent-foreground;
  118. }
  119.  
  120. #element.alternate.active {
  121. background-color: @alternate-active-background;
  122. text-color: @alternate-active-foreground;
  123. }
  124.  
  125. #scrollbar {
  126. width: 0px;
  127. border: 0;
  128. handle-color: @normal-foreground;
  129. handle-width: 0px;
  130. padding: 0;
  131. }
  132.  
  133. #sidebar {
  134. border: 0px;
  135. border-color: @separatorcolor;
  136. }
  137.  
  138. #button {
  139. spacing: 0;
  140. text-color: @normal-foreground;
  141. }
  142.  
  143. #button.selected {
  144. background-color: @selected-normal-background;
  145. text-color: @selected-normal-foreground;
  146. }
  147.  
  148. #inputbar {
  149. spacing: 0;
  150. text-color: @normal-foreground;
  151. background-color: #222222;
  152. padding: 0 0 3px 0;
  153. margin: 0 0 -2px 0;
  154. }
  155.  
  156. #case-indicator {
  157. spacing: 0;
  158. text-color: @normal-foreground;
  159. }
  160.  
  161. #prompt {
  162. text-color: #cccccc;
  163. padding: 14px 10px 10px;
  164. margin: 0 0 0 300px;
  165. }
  166.  
  167. #entry {
  168. spacing: 0;
  169. text-color: @normal-foreground;
  170. background-color: #555555;
  171. padding: 8px 10px;
  172. margin: 6px 300px 3px 0;
  173. border-radius: 2px;
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement