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.

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