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.
 
 
 
 
 

184 lines
2.5 KiB

  1. /* Reset styles */
  2. * {
  3. border: none;
  4. border-radius: 1;
  5. min-height: 0;
  6. margin: 0;
  7. padding: 0;
  8. }
  9. /* The bar */
  10. #waybar {
  11. background: #282828;
  12. color: white;
  13. font-family: "awesome 5";
  14. font-size: 10px;
  15. font-weight: bold;
  16. }
  17. #disk,
  18. #backlight,
  19. #battery,
  20. #clock,
  21. #cpu,
  22. #custom-keyboard-layout,
  23. #memory,
  24. #mode,
  25. #network,
  26. #pulseaudio,
  27. #custom-alsa,
  28. #custom-kill,
  29. #custom.kill,
  30. #tray {
  31. padding-left: 8px;
  32. padding-right: 8px;
  33. margin-left: 2px;
  34. margin-right: 2px;
  35. padding-top: 2px;
  36. padding-bottom: 2px;
  37. }
  38. #disk,
  39. #backlight,
  40. #battery,
  41. #clock,
  42. #cpu,
  43. #custom-keyboard-layout,
  44. #memory,
  45. #mode,
  46. #network,
  47. #pulseaudio,
  48. #custom-alsa,
  49. #custom-kill,
  50. #custom.kill,
  51. #tray {
  52. padding-top: 4px;
  53. padding-bottom: 4px;
  54. margin-top: 2px;
  55. margin-bottom: 2px;
  56. }
  57. /*@media (width > 800px) {
  58. #clock {
  59. padding: 10px;
  60. }
  61. }*/
  62. /*modules style*/
  63. #disk {
  64. background: #d79921;
  65. color: #282828;
  66. }
  67. #backlight {
  68. background: #689d6a;
  69. color: #282828;
  70. }
  71. #battery {
  72. animation-timing-function: linear;
  73. animation-iteration-count: infinite;
  74. animation-direction: alternate;
  75. background: #fbf1c7;
  76. color: #282828;
  77. }
  78. #battery.warning {
  79. color: orange;
  80. }
  81. #clock.date {
  82. background: #d65d0e;
  83. color: #282828;
  84. font-weight: bold;
  85. }
  86. #clock.time {
  87. background: #eceff4;
  88. color: #282828;
  89. font-weight: bold;
  90. font-size: 12px;
  91. }
  92. #cpu {
  93. background: #af3a03;
  94. color: #282828;
  95. }
  96. #cpu.warning {
  97. color: orange;
  98. }
  99. #cpu.critical {
  100. color: orange;
  101. }
  102. #memory {
  103. animation-timing-function: linear;
  104. animation-iteration-count: infinite;
  105. animation-direction: alternate;
  106. background: #458588;
  107. color: #282828;
  108. }
  109. #memory.warning {
  110. color: orange;
  111. }
  112. #mode {
  113. background: #64727d;
  114. border-top: 2px solid white;
  115. /* To compensate for the top border and still have vertical centering */
  116. padding-bottom: 2px;
  117. }
  118. #network {
  119. background: #98971a;
  120. color: #282828;
  121. }
  122. #network.disconnected {
  123. color: orange;
  124. }
  125. #pulseaudio {
  126. background: #8f3f71;
  127. color: #282828;
  128. }
  129. #pulseaudio.muted {
  130. background: #98971a;
  131. color: #282828;
  132. }
  133. #custom-kill {
  134. background: #a32a03;
  135. color: #282828;
  136. }
  137. #tray {
  138. background: transparent;
  139. }
  140. #window {
  141. font-weight: bold;
  142. }
  143. #workspaces button {
  144. font-weight: bold;
  145. padding-bottom: 2px;
  146. padding-left: 5px;
  147. padding-right: 5px;
  148. color: #076678;
  149. background: #282828;
  150. border-radius: 10px;
  151. }
  152. #workspaces button.focused {
  153. font-weight: bold;
  154. color: #282828;
  155. background-color: #076678;
  156. }