Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.1 KiB

  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "Fantasque Sans Mono 10";
  11. show-icons: true;
  12. icon-theme: "Papirus";
  13. drun-display-format: "{name}";
  14. disable-history: false;
  15. fullscreen: false;
  16. hide-scrollbar: true;
  17. sidebar-mode: false;
  18. }
  19. @import "colors.rasi"
  20. window {
  21. transparency: "real";
  22. background-color: @bg;
  23. text-color: @fg;
  24. border: 0px;
  25. border-color: @ac;
  26. border-radius: 0px;
  27. width: 400px;
  28. location: center;
  29. x-offset: 0;
  30. y-offset: 0;
  31. }
  32. prompt {
  33. enabled: true;
  34. padding: 0px 5px 5px 0px;
  35. background-color: @al;
  36. text-color: @bar;
  37. }
  38. textbox-prompt-colon {
  39. padding: -2px 5px 5px -10px;
  40. font: "Material\-Design\-Iconic\-Font 12";
  41. background-color: @al;
  42. text-color: @bar;
  43. expand: false;
  44. str: "";
  45. }
  46. entry {
  47. background-color: @al;
  48. text-color: @bar;
  49. placeholder-color: @bar;
  50. expand: true;
  51. horizontal-align: 0;
  52. placeholder: "Search...";
  53. padding: 1px;
  54. blink: true;
  55. }
  56. inputbar {
  57. children: [ textbox-prompt-colon, prompt ];
  58. background-color: @ac;
  59. text-color: @bar;
  60. expand: false;
  61. border: 0px;
  62. border-radius: 0px;
  63. border-color: @ac;
  64. margin: 0px;
  65. padding: 15px 0px 8px 25px;
  66. }
  67. listview {
  68. background-color: @al;
  69. padding: 0px;
  70. columns: 1;
  71. lines: 8;
  72. spacing: 5px;
  73. cycle: true;
  74. dynamic: true;
  75. layout: vertical;
  76. }
  77. mainbox {
  78. background-color: @al;
  79. border: 0px;
  80. border-radius: 0px;
  81. border-color: @ac;
  82. children: [ inputbar, listview ];
  83. spacing: 0px;
  84. padding: 0px;
  85. }
  86. element {
  87. background-color: @al;
  88. text-color: @fg;
  89. orientation: horizontal;
  90. border-radius: 0px;
  91. padding: 15px;
  92. }
  93. element-icon {
  94. size: 0px;
  95. border: 0px;
  96. }
  97. element-text {
  98. expand: true;
  99. horizontal-align: 0;
  100. vertical-align: 0.5;
  101. margin: 0px 0px 0px -3px;
  102. }
  103. element selected {
  104. background-color: @bga;
  105. text-color: @fg;
  106. border: 0px;
  107. border-radius: 0px;
  108. border-color: @bg;
  109. }