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.

116 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. 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: 0px;
  28. width: 550px;
  29. location: center;
  30. x-offset: 0;
  31. y-offset: 0;
  32. }
  33. prompt {
  34. enabled: true;
  35. padding: 10px 15px 10px 15px;
  36. background-color: @bg1;
  37. text-color: #FFFFFF;
  38. font: "Iosevka Nerd Font 10";
  39. }
  40. entry {
  41. background-color: @bg2;
  42. text-color: #FFFFFF;
  43. placeholder-color: #FFFFFF;
  44. expand: true;
  45. horizontal-align: 0;
  46. placeholder: "Search...";
  47. padding: 12px 10px 10px 10px;
  48. margin: 0px 250px 0px 0px;
  49. border-radius: 0px 50px 50px 0px;
  50. blink: true;
  51. }
  52. inputbar {
  53. children: [ prompt, entry ];
  54. background-color: @bg3;
  55. text-color: #FFFFFF;
  56. expand: false;
  57. border: 0px;
  58. border-radius: 0px;
  59. border-color: @ac;
  60. spacing: 0px;
  61. }
  62. listview {
  63. background-color: @al;
  64. padding: 10px 10px 10px 10px;
  65. columns: 2;
  66. lines: 7;
  67. spacing: 5px;
  68. cycle: true;
  69. dynamic: true;
  70. layout: vertical;
  71. }
  72. mainbox {
  73. background-color: @al;
  74. border: 0px;
  75. border-radius: 0px;
  76. border-color: @bg4;
  77. children: [ inputbar, listview ];
  78. spacing: 0px;
  79. padding: 0px;
  80. }
  81. element {
  82. background-color: @al;
  83. text-color: @fg;
  84. orientation: horizontal;
  85. border-radius: 0px;
  86. padding: 6px;
  87. }
  88. element-icon {
  89. size: 24px;
  90. border: 0px;
  91. }
  92. element-text {
  93. expand: true;
  94. horizontal-align: 0;
  95. vertical-align: 0.5;
  96. margin: 0px 2.5px 0px 2.5px;
  97. }
  98. element selected {
  99. background-color: @bg4;
  100. text-color: @bg;
  101. border: 0px;
  102. border-radius: 0px;
  103. border-color: @bg;
  104. }