Guest User

my rofi config

a guest
Feb 12th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Github : @adi1090x
  5. * Twitter : @adi1090x
  6. *
  7. */
  8.  
  9. configuration {
  10. font: "Noto Sans 10";
  11. show-icons: true;
  12. icon-theme: "Papirus";
  13. display-drun: "";
  14. drun-display-format: "{name}";
  15. disable-history: false;
  16. fullscreen: false;
  17. hide-scrollbar: true;
  18. scroll-method: 0;
  19. /* location: 7;*/
  20. sidebar-mode: false;
  21. me-accept-entry: "MousePrimary";
  22. }
  23.  
  24. /* -- Light -- */
  25. * {
  26. background: #e5e5e5ff;
  27. background-alt: #00000000;
  28. background-bar: #FFFFFFFF;
  29. foreground: #000000A6;
  30. accent: #80808066;
  31. border: #1A73E9FF;
  32. selected: #D7D7D7FF;
  33. }
  34.  
  35. /* -- Dark -- */
  36. /*
  37. * {
  38. background: #212121ff;
  39. background-alt: #00000000;
  40. background-bar: #151515FF;
  41. foreground: #EDEDEDFF;
  42. accent: #EDEDED4d;
  43. border: #1A73E9FF;
  44. selected: #151515ff;
  45. }
  46. */
  47.  
  48. window {
  49. transparency: "real";
  50. background-color: @background;
  51. text-color: @foreground;
  52. border: 0px;
  53. border-color: @border;
  54. border-radius: 10px;
  55. width: 30%;
  56. /* location: 7;*/
  57. }
  58.  
  59. prompt {
  60. enabled: true;
  61. padding: 0.25% 0.75% 0% -0.25%;
  62. background-color: @background-alt;
  63. text-color: @foreground;
  64. font: "FantasqueSansMono Nerd Font 12";
  65. }
  66.  
  67. entry {
  68. background-color: @background-alt;
  69. text-color: @foreground;
  70. placeholder-color: @foreground;
  71. expand: true;
  72. horizontal-align: 0;
  73. placeholder: "Search Apps";
  74. padding: -0.15% 0% 0% 0%;
  75. blink: true;
  76. }
  77.  
  78. inputbar {
  79. children: [ prompt, entry ];
  80. background-color: @background-bar;
  81. text-color: @foreground;
  82. expand: false;
  83. border: 0% 0% 0.3% 0%;
  84. border-radius: 100%;
  85. border-color: @accent;
  86. margin: 0% 0% 0% 0%;
  87. padding: 1.25%;
  88. }
  89.  
  90. listview {
  91. background-color: @background-alt;
  92. columns: 4;
  93. lines: 6;
  94. spacing: 0%;
  95. cycle: false;
  96. dynamic: true;
  97. layout: vertical;
  98. }
  99.  
  100. mainbox {
  101. background-color: @background-alt;
  102. border: 0% 0% 0% 0%;
  103. border-radius: 0% 0% 0% 0%;
  104. border-color: @accent;
  105. children: [ inputbar, listview ];
  106. spacing: 2%;
  107. padding: 2% 1% 2% 1%;
  108. }
  109.  
  110. element {
  111. background-color: @background-alt;
  112. text-color: @foreground;
  113. orientation: vertical;
  114. border-radius: 0%;
  115. padding: 2% 0% 2% 0%;
  116. }
  117.  
  118. element-icon {
  119. size: 64px;
  120. border: 0px;
  121. }
  122.  
  123. element-text {
  124. expand: true;
  125. horizontal-align: 0.5;
  126. vertical-align: 0.5;
  127. margin: 0.5% 0.5% -0.5% 0.5%;
  128. }
  129.  
  130. element selected {
  131. background-color: @selected;
  132. text-color: @foreground;
  133. border: 0% 0% 0.3% 0%;
  134. border-radius: 25px;
  135. border-color: @border;
  136. }
Advertisement
Add Comment
Please, Sign In to add comment