Guest User

Untitled

a guest
Sep 22nd, 2025
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. import "frappe.css";
  2. * {
  3. font-family: FantasqueSansMono Nerd Font;
  4. border: none;
  5. box-shadow: none;
  6. font-size: 1.25rem;
  7. }
  8.  
  9. #waybar {
  10. background: u/base;
  11. }
  12.  
  13. #custom-fuzzel,
  14. #clock,
  15. #workspaces,
  16. #custom-leave,
  17. #mpris,
  18. #battery,
  19. #pulseaudio,
  20. #backlight,
  21. #cpu,
  22. #memory,
  23. #network,
  24. #taskbar,
  25. #temperature {
  26. background-color: u/surface0;
  27. border-radius: 0.25rem;
  28. }
  29.  
  30. #custom-fuzzel,
  31. #pulseaudio,
  32. #battery,
  33. #backlight,
  34. #cpu,
  35. #memory,
  36. #workspaces,
  37. #network,
  38. #taskbar,
  39. #temperature {
  40. margin-right: 0.375rem;
  41. }
  42.  
  43. #clock,
  44. #mpris,
  45. #battery,
  46. #pulseaudio,
  47. #backlight,
  48. #cpu,
  49. #memory,
  50. #network,
  51. #taskbar,
  52. #temperature {
  53. padding: 0.5rem;
  54. }
  55.  
  56. #custom-fuzzel,
  57. #custom-leave {
  58. color: u/crust;
  59. min-width: 3rem;
  60. }
  61.  
  62. #custom-fuzzel:hover,
  63. #custom-leave:hover {
  64. transition: all 0.3s ease-in;
  65. opacity: 0.7;
  66. }
  67.  
  68. #workspaces button {
  69. color: u/lavender;
  70. }
  71.  
  72. #workspaces button.active {
  73. color: u/sky;
  74. }
  75.  
  76. #workspaces button:hover {
  77. color: u/sapphire;
  78. background: inherit;
  79. transition: all 0.3s ease-in;
  80. }
  81.  
  82. #clock {
  83. color: u/text;
  84. }
  85.  
  86. #mpris {
  87. color: u/mauve;
  88. }
  89.  
  90. #battery {
  91. color: u/green;
  92. }
  93.  
  94. #battery.warning:not(.charing) {
  95. color: u/peach;
  96. }
  97.  
  98. u/keyframes blink {
  99. to {
  100. color: #000000;
  101. }
  102. }
  103.  
  104. /* Using steps() instead of linear as a timing function to limit cpu usage */
  105. #battery.critical:not(.charging),
  106. #temperature.critical {
  107. color: u/red;
  108. animation-name: blink;
  109. animation-duration: 1s;
  110. animation-timing-function: steps(12);
  111. animation-iteration-count: infinite;
  112. animation-direction: alternate;
  113. }
  114.  
  115. #pulseaudio {
  116. color: u/maroon;
  117. }
  118.  
  119. #backlight {
  120. color: u/yellow;
  121. }
  122.  
  123. #cpu {
  124. color: u/rosewater;
  125. }
  126.  
  127. #memory {
  128. color: u/teal;
  129. }
  130.  
  131. #network {
  132. color: u/blue;
  133. }
  134.  
  135. #temperature {
  136. color: u/pink;
  137. }
  138.  
  139. #taskbar.empty {
  140. background: none;
  141. }
  142.  
  143. #taskbar * {
  144. background: inherit;
  145. outline: none;
  146. border: none;
  147. box-shadow: none;
  148. }
  149.  
  150. #taskbar button:not(:last-child) {
  151. border-right: 2px solid u/crust;
  152. }
Advertisement
Add Comment
Please, Sign In to add comment