Guest User

Untitled

a guest
Sep 5th, 2022
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. configuration {
  2. display-run: "╰❯ ";
  3. display-drun: " ";
  4. display-window: " ";
  5. modes: "drun";
  6. font: "Hack Nerd Font 12";
  7. drun {
  8. display-format: "{name} -columns 3";
  9. }
  10. border: 0;
  11. }
  12.  
  13. * {
  14. background: #272833;
  15. background-hover: #366ac3;
  16. foreground: #fb85ff;
  17.  
  18. background-color: #272833;
  19.  
  20. light: #dfdfdf;
  21. red: #f7768e;
  22.  
  23. border: 0;
  24. lines: 12;
  25. padding: 0;
  26. margin: 0;
  27. spacing: 0;
  28. }
  29.  
  30. window {
  31. width: 30%;
  32. transparency: "real";
  33. }
  34.  
  35. mainbox {
  36. children: [inputbar, listview];
  37. }
  38.  
  39. listview {
  40. columns: 1;
  41. }
  42.  
  43. element {
  44. padding: 12;
  45. orientation: vertical;
  46. text-color: @foreground;
  47. background-color: @background;
  48. }
  49.  
  50. element selected {
  51. background-color: @background-hover;
  52. text-color: @light;
  53. }
  54.  
  55. inputbar {
  56. background-color: @background;
  57. children: [prompt, entry];
  58. }
  59.  
  60. prompt {
  61. enabled: true;
  62. font: "Hack Nerd Font 12";
  63. padding: 12 0 0 12;
  64. text-color: @red;
  65. }
  66.  
  67. entry {
  68. padding: 12;
  69. text-color: @red;
  70. }
  71.  
  72. element-text, element-icon {
  73. background-color: inherit;
  74. text-color: inherit;
  75. }
Add Comment
Please, Sign In to add comment