powermenu.rasi 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*******************************************************
  2. * ROFI configs i3 powermenu for EndeavourOS
  3. * Maintainer: joekamprad <joekamprad@endeavouros.com>
  4. *******************************************************/
  5. configuration {
  6. font: "Noto Sans Regular 10";
  7. show-icons: false;
  8. icon-theme: "Qogir";
  9. scroll-method: 0;
  10. disable-history: false;
  11. sidebar-mode: false;
  12. }
  13. @import "~/.config/rofi/arc_dark_transparent_colors.rasi"
  14. window {
  15. background-color: @background;
  16. border: 0;
  17. padding: 10;
  18. transparency: "real";
  19. width: 120px;
  20. location: east;
  21. /*y-offset: 18;*/
  22. /*x-offset: 850;*/
  23. transparency: "real";
  24. }
  25. listview {
  26. lines: 6;
  27. columns: 1;
  28. scrollbar: false;
  29. }
  30. element {
  31. border: 0;
  32. padding: 1px ;
  33. }
  34. element-text {
  35. background-color: inherit;
  36. text-color: inherit;
  37. }
  38. element.normal.normal {
  39. background-color: @normal-background;
  40. text-color: @normal-foreground;
  41. }
  42. element.normal.urgent {
  43. background-color: @urgent-background;
  44. text-color: @urgent-foreground;
  45. }
  46. element.normal.active {
  47. background-color: @active-background;
  48. text-color: @active-foreground;
  49. }
  50. element.selected.normal {
  51. background-color: @selected-normal-background;
  52. text-color: @selected-normal-foreground;
  53. }
  54. element.selected.urgent {
  55. background-color: @selected-urgent-background;
  56. text-color: @selected-urgent-foreground;
  57. }
  58. element.selected.active {
  59. background-color: @selected-active-background;
  60. text-color: @selected-active-foreground;
  61. }
  62. element.alternate.normal {
  63. background-color: @alternate-normal-background;
  64. text-color: @alternate-normal-foreground;
  65. }
  66. element.alternate.urgent {
  67. background-color: @alternate-urgent-background;
  68. text-color: @alternate-urgent-foreground;
  69. }
  70. element.alternate.active {
  71. background-color: @alternate-active-background;
  72. text-color: @alternate-active-foreground;
  73. }
  74. scrollbar {
  75. width: 4px ;
  76. border: 0;
  77. handle-color: @normal-foreground;
  78. handle-width: 8px ;
  79. padding: 0;
  80. }
  81. mode-switcher {
  82. border: 2px 0px 0px ;
  83. border-color: @separatorcolor;
  84. }
  85. button {
  86. spacing: 0;
  87. text-color: @normal-foreground;
  88. }
  89. button.selected {
  90. background-color: @selected-normal-background;
  91. text-color: @selected-normal-foreground;
  92. }
  93. inputbar {
  94. spacing: 0;
  95. text-color: @normal-foreground;
  96. padding: 1px ;
  97. }
  98. case-indicator {
  99. spacing: 0;
  100. text-color: @normal-foreground;
  101. }
  102. entry {
  103. spacing: 0;
  104. text-color: @normal-foreground;
  105. }
  106. prompt {
  107. spacing: 0;
  108. text-color: @normal-foreground;
  109. }
  110. inputbar {
  111. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  112. }
  113. textbox-prompt-colon {
  114. expand: false;
  115. str: ":";
  116. margin: 0px 0.3em 0em 0em ;
  117. text-color: @normal-foreground;
  118. }