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.

181 lines
2.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. * {
  2. border: none;
  3. border-radius: 0;
  4. /* `otf-font-awesome` is required to be installed for icons */
  5. font-family: JetBrains Mono, mono, sans-serif;
  6. font-size: 12px;
  7. min-height: 0;
  8. }
  9. window#waybar {
  10. background-color: #1d2021;
  11. /*border-bottom: 3px solid rgba(100, 114, 125, 0.2);*/
  12. color: #fbf1c7;
  13. transition-property: background-color;
  14. transition-duration: .5s;
  15. }
  16. window#waybar.hidden {
  17. opacity: 0.2;
  18. }
  19. /*
  20. window#waybar.empty {
  21. background-color: transparent;
  22. }
  23. window#waybar.solo {
  24. background-color: #FFFFFF;
  25. }
  26. */
  27. window#waybar.termite {
  28. background-color: #3F3F3F;
  29. }
  30. window#waybar.chromium {
  31. background-color: #000000;
  32. border: none;
  33. }
  34. #workspaces button {
  35. padding: 0 2px;
  36. background-color: #fbf1c7;
  37. color: #1d2021;
  38. }
  39. /* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
  40. #workspaces button:hover {
  41. background: #17917a;
  42. box-shadow: inherit;
  43. color: #fbf1c7;
  44. }
  45. #workspaces button.focused {
  46. background-color: #17917a;
  47. color: #fbf1c7;
  48. }
  49. #workspaces button.urgent {
  50. background-color: #eb4d4b;
  51. }
  52. #mode {
  53. background-color: #64727D;
  54. }
  55. #clock,
  56. #battery,
  57. #cpu,
  58. #memory,
  59. #temperature,
  60. #backlight,
  61. #network,
  62. #pulseaudio,
  63. #custom-media,
  64. #tray,
  65. #mode,
  66. #idle_inhibitor,
  67. #custom-temperature,
  68. #custom-watson,
  69. #custom-calc,
  70. #mpd {
  71. padding: 0 4px;
  72. margin: 0 4px;
  73. color: #fbf1c7;
  74. }
  75. #clock {
  76. }
  77. @keyframes blink {
  78. to {
  79. background-color: #ffffff;
  80. color: #000000;
  81. }
  82. }
  83. #battery.critical:not(.charging) {
  84. background-color: #f53c3c;
  85. color: #ffffff;
  86. animation-name: blink;
  87. animation-duration: 0.5s;
  88. animation-timing-function: linear;
  89. animation-iteration-count: infinite;
  90. animation-direction: alternate;
  91. }
  92. label:focus {
  93. background-color: #000000;
  94. }
  95. #cpu {
  96. }
  97. #memory {
  98. }
  99. #backlight {
  100. }
  101. #network {
  102. /*background-color: #2980b9;*/
  103. }
  104. #network.disconnected {
  105. }
  106. #pulseaudio {
  107. }
  108. #pulseaudio.muted {
  109. }
  110. #custom-media {
  111. min-width: 100px;
  112. padding-top: 5px;
  113. padding-left: 15px;
  114. }
  115. #custom-media.custom-spotify {
  116. }
  117. #custom-media.custom-vlc {
  118. }
  119. #custom-power {
  120. padding-right: 15px;
  121. padding-top: 3px;
  122. }
  123. #temperature {
  124. }
  125. #temperature.critical {
  126. background-color: #eb4d4b;
  127. }
  128. #tray {
  129. background-color: #2980b9;
  130. }
  131. #idle_inhibitor {
  132. }
  133. #idle_inhibitor.activated {
  134. background-color: #ecf0f1;
  135. color: #2d3436;
  136. }
  137. #mpd {
  138. }
  139. #mpd.disconnected {
  140. }
  141. #mpd.stopped {
  142. }
  143. #mpd.paused {
  144. }