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.4 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
  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. #mpd {
  68. padding: 0 4px;
  69. margin: 0 4px;
  70. color: #fbf1c7;
  71. }
  72. #clock {
  73. }
  74. @keyframes blink {
  75. to {
  76. background-color: #ffffff;
  77. color: #000000;
  78. }
  79. }
  80. #battery.critical:not(.charging) {
  81. background-color: #f53c3c;
  82. color: #ffffff;
  83. animation-name: blink;
  84. animation-duration: 0.5s;
  85. animation-timing-function: linear;
  86. animation-iteration-count: infinite;
  87. animation-direction: alternate;
  88. }
  89. label:focus {
  90. background-color: #000000;
  91. }
  92. #cpu {
  93. }
  94. #memory {
  95. }
  96. #backlight {
  97. }
  98. #network {
  99. /*background-color: #2980b9;*/
  100. }
  101. #network.disconnected {
  102. }
  103. #pulseaudio {
  104. }
  105. #pulseaudio.muted {
  106. }
  107. #custom-media {
  108. min-width: 100px;
  109. }
  110. #custom-media.custom-spotify {
  111. }
  112. #custom-media.custom-vlc {
  113. }
  114. #temperature {
  115. }
  116. #temperature.critical {
  117. background-color: #eb4d4b;
  118. }
  119. #tray {
  120. background-color: #2980b9;
  121. }
  122. #idle_inhibitor {
  123. }
  124. #idle_inhibitor.activated {
  125. background-color: #ecf0f1;
  126. color: #2d3436;
  127. }
  128. #mpd {
  129. }
  130. #mpd.disconnected {
  131. }
  132. #mpd.stopped {
  133. }
  134. #mpd.paused {
  135. }
  136. #custom-watson {
  137. padding: 0 10px;
  138. margin: 0 4px;
  139. }
  140. #custom-calc {
  141. padding: 0 10px;
  142. margin: 0 4px;
  143. }