column_circle.rasi 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. height: 100%;
  24. width: 12.25%;
  25. location: east;
  26. x-offset: 0;
  27. y-offset: 0;
  28. }
  29. prompt {
  30. enabled: true;
  31. padding: 0.5% 0.5% 0.5% 0%;
  32. background-color: @background-alt;
  33. text-color: @foreground;
  34. }
  35. textbox-prompt-colon {
  36. expand: false;
  37. str: "System";
  38. background-color: @border;
  39. text-color: @background;
  40. padding: 1% 1% 1% 2.2%;
  41. }
  42. inputbar {
  43. children: [ textbox-prompt-colon ];
  44. background-color: @border;
  45. text-color: @foreground;
  46. expand: false;
  47. border: 0% 0% 0% 0%;
  48. border-radius: 100%;
  49. border-color: @border;
  50. margin: 0% 0% 0% 0%;
  51. padding: 0.5%;
  52. position: center;
  53. }
  54. listview {
  55. background-color: @background;
  56. margin: 0% 0% 0% 0%;
  57. spacing: 3%;
  58. cycle: true;
  59. dynamic: true;
  60. layout: vertical;
  61. }
  62. mainbox {
  63. background-color: @background;
  64. children: [ inputbar, listview ];
  65. spacing: 3%;
  66. padding: 4% 2% 0% 2%;
  67. }
  68. element {
  69. background-color: @background-alt;
  70. text-color: @foreground;
  71. orientation: vertical;
  72. border-radius: 100%;
  73. }
  74. element-text {
  75. background-color: #00000000;
  76. text-color: inherit;
  77. font: "feather 32";
  78. expand: true;
  79. horizontal-align: 0.5;
  80. vertical-align: 0.5;
  81. margin: 5% 0% 5% 0%;
  82. }
  83. element normal.urgent,
  84. element alternate.urgent {
  85. background-color: @urgent;
  86. text-color: @foreground;
  87. border-radius: 0.2%;
  88. }
  89. element normal.active,
  90. element alternate.active {
  91. background-color: @background-alt;
  92. text-color: @foreground;
  93. }
  94. element selected {
  95. background-color: @selected;
  96. text-color: @foreground;
  97. border: 0.2%;
  98. border-radius: 100%;
  99. border-color: @border;
  100. }
  101. element selected.urgent {
  102. background-color: @urgent;
  103. text-color: @foreground;
  104. }
  105. element selected.active {
  106. background-color: @background-alt;
  107. color: @foreground;
  108. }