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.

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