config.rasi 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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: 380px;
  25. width: 720px;
  26. border: 3px;
  27. border-color: @border-col;
  28. background-color: @bg-col;
  29. }
  30. mainbox {
  31. background-color: @bg-col;
  32. }
  33. inputbar {
  34. children: [prompt,entry];
  35. background-color: @bg-col;
  36. border-radius: 5px;
  37. padding: 2px;
  38. }
  39. prompt {
  40. background-color: @blue;
  41. padding: 6px;
  42. text-color: @bg-col;
  43. border-radius: 3px;
  44. margin: 20px 0px 0px 20px;
  45. }
  46. textbox-prompt-colon {
  47. expand: false;
  48. str: ":";
  49. }
  50. entry {
  51. padding: 6px;
  52. margin: 20px 0px 0px 10px;
  53. text-color: @fg-col;
  54. background-color: @bg-col;
  55. placeholder:"Query";
  56. }
  57. listview {
  58. border: 0px 0px 0px;
  59. padding: 6px 0px 0px;
  60. margin: 10px 0px 0px 20px;
  61. columns: 2;
  62. background-color: @bg-col;
  63. }
  64. element {
  65. padding: 5px;
  66. background-color: @bg-col;
  67. text-color: @fg-col ;
  68. }
  69. element-icon {
  70. size: 25px;
  71. }
  72. element selected {
  73. background-color: @selected-col ;
  74. text-color: @fg-col2 ;
  75. }
  76. mode-switcher {
  77. spacing: 0;
  78. }
  79. button {
  80. padding: 10px;
  81. background-color: @bg-col-light;
  82. text-color: @grey;
  83. vertical-align: 0.5;
  84. horizontal-align: 0.5;
  85. }
  86. button selected {
  87. background-color: @bg-col;
  88. text-color: @blue;
  89. }