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.

115 lines
3.0 KiB

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