Lemur Pro nixos dotfiles
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.

90 lines
1.3 KiB

2 years ago
  1. // vim:ft=css
  2. configuration {
  3. modi: "drun";
  4. font: "Jetbrains Mono 14";
  5. display-drun: "";
  6. icon-theme: "Adwaita";
  7. drun-display-format: "{name}";
  8. sidebar-mode: true;
  9. }
  10. @theme "/dev/null"
  11. * {
  12. bg: #242e35;
  13. fg: #cec0af;
  14. button: #1b1e25;
  15. background-color: @bg;
  16. text-color: @fg;
  17. }
  18. window {
  19. transparency: "real";
  20. width: 50%;
  21. height: 50%;
  22. }
  23. prompt {
  24. enabled: false;
  25. background-color: @bg;
  26. icon-size: 90;
  27. padding: 12px 18px 10px 18px;
  28. border-radius: 8px;
  29. }
  30. entry {
  31. placeholder: "Search";
  32. placeholder-color: @fg;
  33. expand: true;
  34. padding: 1.5%;
  35. border-radius: 8px;
  36. }
  37. inputbar {
  38. children: [ prompt, entry ];
  39. background-image: url("geo.png");
  40. expand: false;
  41. border-radius: 0px 0px 0px 0px;
  42. padding: 100px 300px 30px 30px;
  43. }
  44. listview {
  45. columns: 3;
  46. lines: 4;
  47. cycle: false;
  48. dynamic: true;
  49. border: 0px 0px 0px 0px;
  50. layout: vertical;
  51. padding: 20px 20px 20px 20px;
  52. border-color: @fg;
  53. border-radius: 0px 0px 0px 0px;
  54. }
  55. mainbox {
  56. children: [ inputbar, listview ];
  57. }
  58. element {
  59. orientation: vertical;
  60. padding: 1.5% 0% 1.5% 0%;
  61. border-radius: 8px;
  62. }
  63. element-text {
  64. expand: true;
  65. vertical-align: 1;
  66. margin: 0.5% 1% 0% 1%;
  67. background-color: inherit;
  68. text-color: inherit;
  69. }
  70. element-icon {
  71. size: 25px;
  72. }
  73. element selected {
  74. background-color: @button;
  75. border-radius: 10px;
  76. text-color: #f0cad5;
  77. }