config.rasi 1.8 KB

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