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.

191 lines
2.6 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: Vulf Mono Code, 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 {
  35. /* background-color: #434c5e;
  36. padding: 1 5 1 5;
  37. font-size: 15px;
  38. border-radius: 10px;
  39. margin-right: 10;*/
  40. }
  41. #workspaces button {
  42. padding: 0 2px;
  43. /* background-color: #fbf1c7; */
  44. color: #fbf1c7;
  45. }
  46. /* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
  47. #workspaces button:hover {
  48. background: #17917a;
  49. box-shadow: inherit;
  50. color: #fbf1c7;
  51. }
  52. #workspaces button.focused {
  53. background-color: #17917a;
  54. color: #fbf1c7;
  55. }
  56. #workspaces button.urgent {
  57. background-color: #eb4d4b;
  58. }
  59. #mode {
  60. background-color: #64727D;
  61. }
  62. #clock,
  63. #battery,
  64. #cpu,
  65. #memory,
  66. #temperature,
  67. #backlight,
  68. #network,
  69. #pulseaudio,
  70. #custom-media,
  71. #tray,
  72. #mode,
  73. #idle_inhibitor,
  74. #custom-temperature,
  75. #custom-watson,
  76. #custom-calc,
  77. #mpd {
  78. padding: 0 4px;
  79. margin: 0 4px;
  80. color: #fbf1c7;
  81. }
  82. #clock {
  83. }
  84. @keyframes blink {
  85. to {
  86. background-color: #ffffff;
  87. color: #000000;
  88. }
  89. }
  90. #battery.critical:not(.charging) {
  91. background-color: #f53c3c;
  92. color: #ffffff;
  93. animation-name: blink;
  94. animation-duration: 0.5s;
  95. animation-timing-function: linear;
  96. animation-iteration-count: infinite;
  97. animation-direction: alternate;
  98. }
  99. label:focus {
  100. background-color: #000000;
  101. }
  102. #cpu {
  103. }
  104. #memory {
  105. }
  106. #backlight {
  107. }
  108. #network {
  109. /*background-color: #2980b9;*/
  110. }
  111. #network.disconnected {
  112. }
  113. #pulseaudio {
  114. }
  115. #pulseaudio.muted {
  116. }
  117. #custom-media {
  118. min-width: 100px;
  119. padding-top: 5px;
  120. padding-left: 15px;
  121. }
  122. #custom-media.custom-spotify {
  123. }
  124. #custom-media.custom-vlc {
  125. }
  126. #custom-power {
  127. padding-right: 15px;
  128. padding-left: 10px;
  129. padding-top: 3px;
  130. }
  131. #temperature {
  132. }
  133. #temperature.critical {
  134. background-color: #eb4d4b;
  135. }
  136. #tray {
  137. /* background-color: #17917a; */
  138. }
  139. #idle_inhibitor {
  140. }
  141. #idle_inhibitor.activated {
  142. background-color: #ecf0f1;
  143. color: #2d3436;
  144. }
  145. #mpd {
  146. }
  147. #mpd.disconnected {
  148. }
  149. #mpd.stopped {
  150. }
  151. #mpd.paused {
  152. }