config.rasi 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. configuration{
  2. modi: "run,drun,window";
  3. lines: 5;
  4. font: "Iosevka 12";
  5. show-icons: true;
  6. icon-theme: "Paper Mono";
  7. terminal: "st";
  8. drun-display-format: "{icon} {name}";
  9. location: 0;
  10. disable-history: false;
  11. hide-scrollbar: true;
  12. display-drun: "  Apps ";
  13. }
  14. @theme "everblush"
  15. element-text, element-icon , mode-switcher {
  16. background-color: inherit;
  17. text-color: inherit;
  18. }
  19. window {
  20. height: 360px;
  21. border: 3px;
  22. border-color: @border-col;
  23. background-color: @bg-col;
  24. }
  25. mainbox {
  26. background-color: @bg-col;
  27. }
  28. inputbar {
  29. children: [prompt,entry];
  30. background-color: @bg-col;
  31. border-radius: 5px;
  32. padding: 2px;
  33. }
  34. prompt {
  35. background-color: @blue;
  36. padding: 6px;
  37. text-color: @bg-col;
  38. border-radius: 3px;
  39. margin: 20px 0px 0px 20px;
  40. }
  41. textbox-prompt-colon {
  42. expand: false;
  43. str: ":";
  44. }
  45. entry {
  46. padding: 6px;
  47. margin: 20px 0px 0px 10px;
  48. text-color: @fg-col;
  49. background-color: @bg-col;
  50. }
  51. listview {
  52. border: 0px 0px 0px;
  53. padding: 6px 0px 0px;
  54. margin: 10px 0px 0px 20px;
  55. columns: 2;
  56. background-color: @bg-col;
  57. }
  58. element {
  59. padding: 5px;
  60. background-color: @bg-col;
  61. text-color: @fg-col ;
  62. }
  63. element-icon {
  64. size: 25px;
  65. }
  66. element selected {
  67. background-color: @selected-col ;
  68. text-color: @fg-col2 ;
  69. }
  70. mode-switcher {
  71. spacing: 0;
  72. }
  73. button {
  74. padding: 10px;
  75. background-color: @bg-col-light;
  76. text-color: @grey;
  77. vertical-align: 0.5;
  78. horizontal-align: 0.5;
  79. }
  80. button selected {
  81. background-color: @bg-col;
  82. text-color: @blue;
  83. }