full_right.rasi 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "FantasqueSansMono Nerd Font 10";
  11. show-icons: true;
  12. icon-theme: "Papirus";
  13. display-drun: "";
  14. drun-display-format: "{name}";
  15. disable-history: false;
  16. sidebar-mode: false;
  17. }
  18. @import "styles/colors.rasi"
  19. window {
  20. transparency: "real";
  21. background-color: @background;
  22. text-color: @foreground;
  23. border: 0% 1.5% 0% 0%;
  24. border-color: @border;
  25. border-radius: 0% 0% 0% 0%;
  26. width: 100%;
  27. height: 100%;
  28. }
  29. prompt {
  30. enabled: true;
  31. padding: 0% 1% 0% 0%;
  32. background-color: @background;
  33. text-color: @foreground;
  34. font: "FantasqueSansMono Nerd Font 12";
  35. }
  36. entry {
  37. background-color: @background;
  38. text-color: @foreground;
  39. placeholder-color: @foreground;
  40. expand: true;
  41. horizontal-align: 0;
  42. placeholder: "Search Applications";
  43. padding: 0.15% 0% 0% 0%;
  44. blink: true;
  45. }
  46. inputbar {
  47. children: [ prompt, entry ];
  48. background-color: @background;
  49. text-color: @foreground;
  50. expand: false;
  51. border: 0% 0% 0.3% 0%;
  52. border-radius: 0% 0% 0% 0%;
  53. border-color: @border-alt;
  54. margin: 0% 47% 0% 0%;
  55. padding: 1%;
  56. position: center;
  57. }
  58. listview {
  59. background-color: @background;
  60. columns: 10;
  61. spacing: 1%;
  62. cycle: false;
  63. dynamic: true;
  64. layout: vertical;
  65. }
  66. mainbox {
  67. background-color: @background;
  68. border: 0% 1.5% 0% 0%;
  69. border-radius: 0% 0% 0% 0%;
  70. border-color: @border-alt;
  71. children: [ inputbar, listview ];
  72. spacing: 2%;
  73. padding: 15% 10% 10% 10%;
  74. }
  75. element {
  76. background-color: @background;
  77. text-color: @foreground;
  78. orientation: vertical;
  79. border-radius: 0%;
  80. padding: 2% 0% 2% 0%;
  81. }
  82. element-icon {
  83. background-color: #00000000;
  84. text-color: inherit;
  85. horizontal-align: 0.5;
  86. vertical-align: 0.5;
  87. size: 64px;
  88. border: 0px;
  89. }
  90. element-text {
  91. background-color: #00000000;
  92. text-color: inherit;
  93. expand: true;
  94. horizontal-align: 0.5;
  95. vertical-align: 0.5;
  96. margin: 0.5% 1% 0% 1%;
  97. }
  98. element normal.urgent,
  99. element alternate.urgent {
  100. background-color: @urgent;
  101. text-color: @foreground;
  102. border-radius: 1%;
  103. }
  104. element normal.active,
  105. element alternate.active {
  106. background-color: @background-alt;
  107. text-color: @foreground;
  108. }
  109. element selected {
  110. background-color: @selected;
  111. text-color: @foreground;
  112. border: 0% 0% 0.3% 0%;
  113. border-radius: 0% 0% 0% 0%;
  114. border-color: @border-alt;
  115. }
  116. element selected.urgent {
  117. background-color: @urgent;
  118. text-color: @foreground;
  119. }
  120. element selected.active {
  121. background-color: @background-alt;
  122. color: @foreground;
  123. }