full_rounded.rasi 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 14";
  11. show-icons: false;
  12. icon-theme: "Papirus";
  13. drun-display-format: "{name}";
  14. disable-history: false;
  15. sidebar-mode: false;
  16. }
  17. @import "styles/colors.rasi"
  18. window {
  19. transparency: "real";
  20. background-color: @background;
  21. text-color: @foreground;
  22. border-radius: 0px;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. prompt {
  27. enabled: true;
  28. padding: 1% 1% 1% 0%;
  29. background-color: @background-alt;
  30. text-color: @foreground;
  31. }
  32. textbox-prompt-colon {
  33. expand: false;
  34. str: "System |";
  35. background-color: @background-alt;
  36. text-color: @foreground;
  37. padding: 1% 0.5% 1% 0.5%;
  38. }
  39. inputbar {
  40. children: [ textbox-prompt-colon, prompt ];
  41. background-color: @background-alt;
  42. text-color: @foreground;
  43. expand: false;
  44. border: 0% 0% 0.2% 0.2%;
  45. border-radius: 15px;
  46. border-color: @border;
  47. margin: 0% 59.3% 0% 0%;
  48. padding: 0.5%;
  49. position: center;
  50. }
  51. listview {
  52. background-color: @background;
  53. margin: 0% 0% 0% 0%;
  54. spacing: 3%;
  55. cycle: true;
  56. dynamic: true;
  57. layout: horizontal;
  58. }
  59. mainbox {
  60. background-color: @background;
  61. children: [ inputbar, listview ];
  62. spacing: 5%;
  63. padding: 32.50% 0% 0% 13.25%;
  64. }
  65. element {
  66. background-color: @background-alt;
  67. text-color: @foreground;
  68. orientation: horizontal;
  69. border-radius: 25px;
  70. }
  71. element-text {
  72. background-color: #00000000;
  73. text-color: inherit;
  74. font: "feather 64";
  75. expand: true;
  76. horizontal-align: 0.5;
  77. vertical-align: 0.5;
  78. margin: 6.5% 4% 6.5% 4%;
  79. }
  80. element normal.urgent,
  81. element alternate.urgent {
  82. background-color: @urgent;
  83. text-color: @foreground;
  84. border-radius: 0.2%;
  85. }
  86. element normal.active,
  87. element alternate.active {
  88. background-color: @background-alt;
  89. text-color: @foreground;
  90. }
  91. element selected {
  92. background-color: @selected;
  93. text-color: @foreground;
  94. border: 0% 0% 0.2% 0.2%;
  95. border-radius: 25px;
  96. border-color: @border;
  97. }
  98. element selected.urgent {
  99. background-color: @urgent;
  100. text-color: @foreground;
  101. }
  102. element selected.active {
  103. background-color: @background-alt;
  104. color: @foreground;
  105. }