Advertisement
Guest User

Untitled

a guest
Nov 21st, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. /**
  2. * User: deadguy
  3. * Copyright: deadguy
  4. */
  5.  
  6. configuration {
  7. display-drun: "Activate";
  8. display-run: "Execute";
  9. display-window: "Window";
  10. display-file-browser: "File Search";
  11. display-calc: "Calculator";
  12. show-icons: true;
  13. sidebar-mode: false;
  14. }
  15.  
  16. * {
  17. background-color: rgba(0,0,0, 10%);
  18. //transparent: #00000000;
  19. //transparency: "real";
  20. text-color: #f3f4f3;
  21. /*selbg: #215d9c;*/
  22. selbg: #344d8a;
  23. actbg: #262626;
  24. urgbg: #e53935;
  25. winbg: #26c6da;
  26.  
  27. selected-normal-foreground: @winbg;
  28. normal-foreground: @text-color;
  29. selected-normal-background: @actbg;
  30. normal-background: @background-color;
  31.  
  32. selected-urgent-foreground: @background-color;
  33. urgent-foreground: @text-color;
  34. selected-urgent-background: @urgbg;
  35. urgent-background: @background-color;
  36.  
  37. selected-active-foreground: @winbg;
  38. active-foreground: @text-color;
  39. selected-active-background: @actbg;
  40. active-background: @selbg;
  41.  
  42. line-margin: 2;
  43. line-padding: 2;
  44. separator-style: "none";
  45. hide-scrollbar: "true";
  46. margin: 0;
  47. padding: 0;
  48. }
  49.  
  50. window {
  51. /*location: north west;
  52. anchor: north west;*/
  53. //background-color: #008EA7BF;
  54. height: 50%;
  55. width: 50%;
  56. orientation: horizontal;
  57. children: [mainbox];
  58. x-offset: 8px;
  59. y-offset: 5px;
  60. /*border-radius: 100px;*/
  61. border-radius: 12px 12px 12px 12px;
  62. border:0px;
  63. border-color: #344D8A;
  64. }
  65.  
  66. mainbox {
  67. spacing: 0.8em;
  68. children: [ entry,listview,mode-switcher ];
  69. border-radius: 12px 12px 12px 12px;
  70. }
  71.  
  72. button { padding: 5px 2px; }
  73.  
  74. button selected {
  75. background-color: @active-background;
  76. //text-color: @background-color;
  77. text-color: #f3f4f3;
  78. }
  79.  
  80. inputbar {
  81. padding: 5px;
  82. spacing: 5px;
  83.  
  84. }
  85.  
  86. listview {
  87. //spacing: 0.5em;
  88. dynamic: false;
  89. cycle: true;
  90.  
  91. }
  92. mode-switcher{
  93. border:2px;
  94. //border-color: rgba(0,0,0,20%);
  95. border-radius: 0px 0px 12px 12px;
  96. text-color: #f3f4f3;
  97. }
  98.  
  99. element { padding: 10px; }
  100.  
  101. entry {
  102. placeholder: "";
  103. expand: false;
  104. text-color: @normal-foreground;
  105. vertical-align: 1;
  106. padding: 10px;
  107. font: "Hack Nerd Font 20px";
  108. border:0px 0px 0px 0px;
  109. border-color: #344D8A;
  110. border-radius: 0px 0px 0px 0px;
  111. margin-left: 5px;
  112. }
  113.  
  114. element normal.normal {
  115. background-color: @normal-background;
  116. text-color: @normal-foreground;
  117. }
  118.  
  119. element normal.urgent {
  120. background-color: @urgent-background;
  121. text-color: @urgent-foreground;
  122. }
  123.  
  124. element normal.active {
  125. background-color: @active-background;
  126. text-color: @active-foreground;
  127. }
  128.  
  129. element selected.normal {
  130. background-color: @selected-normal-background;
  131. text-color: @selected-normal-foreground;
  132. border: 0 5px solid 0 0;
  133. border-color: @active-background;
  134. }
  135.  
  136. element selected.urgent {
  137. background-color: @selected-urgent-background;
  138. text-color: @selected-urgent-foreground;
  139. }
  140.  
  141. element selected.active {
  142. background-color: @selected-active-background;
  143. text-color: @selected-active-foreground;
  144. }
  145.  
  146. element alternate.normal {
  147. background-color: @normal-background;
  148. text-color: @normal-foreground;
  149. }
  150.  
  151. element alternate.urgent {
  152. background-color: @urgent-background;
  153. text-color: @urgent-foreground;
  154. }
  155.  
  156. element alternate.active {
  157. background-color: @active-background;
  158. text-color: @active-foreground;
  159. }
  160.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement