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.

166 lines
2.3 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: #000000;
  12. color: #00ff00;
  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. #temperature,
  28. #idle_inhibitor,
  29. #custom-battery,
  30. #custom-alsa,
  31. #custom-kill,
  32. #custom-terminal,
  33. #custom-keyshow,
  34. #custom-keyhide,
  35. #tray {
  36. padding-left: 8px;
  37. padding-right: 8px;
  38. margin-left: 2px;
  39. margin-right: 2px;
  40. padding-top: 2px;
  41. padding-bottom: 2px;
  42. padding-top: 4px;
  43. padding-bottom: 4px;
  44. margin-top: 2px;
  45. margin-bottom: 2px;
  46. border: 1px solid #00ff00;
  47. border-radius: 3px;
  48. }
  49. /*@media (width > 800px) {
  50. #clock {
  51. padding: 10px;
  52. }
  53. }*/
  54. /*modules style*/
  55. #disk {
  56. }
  57. #backlight {
  58. }
  59. #custom-battery.charging {
  60. }
  61. #custom-battery.discharging {
  62. color: green;
  63. }
  64. #battery {
  65. animation-timing-function: linear;
  66. animation-iteration-count: infinite;
  67. animation-direction: alternate;
  68. }
  69. #battery.warning,
  70. #temperature.warning,
  71. #cpu.warning {
  72. color: orange;
  73. }
  74. #battery.critical,
  75. #cpu.critical,
  76. #temperature.critical {
  77. color: red;
  78. }
  79. #idle_inhibitor.activated {
  80. color: orange;
  81. }
  82. #idle_inhibitor.deactivated {
  83. color: green;
  84. }
  85. #clock.date {
  86. font-weight: bold;
  87. }
  88. #clock.time {
  89. font-weight: bold;
  90. font-size: 12px;
  91. }
  92. #memory {
  93. animation-timing-function: linear;
  94. animation-iteration-count: infinite;
  95. animation-direction: alternate;
  96. }
  97. #memory.warning {
  98. color: orange;
  99. }
  100. #mode {
  101. border-top: 2px solid white;
  102. /* To compensate for the top border and still have vertical centering */
  103. padding-bottom: 2px;
  104. }
  105. #network {
  106. }
  107. #network.disconnected {
  108. color: gray;
  109. }
  110. #pulseaudio {
  111. }
  112. #pulseaudio.muted {
  113. }
  114. #custom-kill {
  115. }
  116. #custom-terminal {
  117. }
  118. #tray {
  119. background: transparent;
  120. }
  121. #window {
  122. font-weight: bold;
  123. }
  124. #workspaces button {
  125. font-weight: bold;
  126. padding-top: 3px;
  127. padding-bottom: 3px;
  128. padding-left: 5px;
  129. padding-right: 5px;
  130. border-radius: 10px;
  131. color: #00ff00;
  132. border: 1px dotted #0c0;
  133. border-radius: 1px;
  134. }
  135. #workspaces button.focused {
  136. font-weight: bolder;
  137. color: #000;
  138. background-color: #00ff00;
  139. }