2018-08-08 23:54:58 +02:00
|
|
|
* {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
font-family: Roboto, Helvetica, Arial, sans-serif;
|
|
|
|
font-size: 13px;
|
2018-11-02 12:35:26 +01:00
|
|
|
min-height: 0;
|
2018-08-08 23:54:58 +02:00
|
|
|
}
|
|
|
|
|
2018-10-04 18:47:06 +02:00
|
|
|
window#waybar {
|
2018-08-08 23:54:58 +02:00
|
|
|
background: rgba(43, 48, 59, 0.5);
|
|
|
|
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:30:41 +01:00
|
|
|
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
2018-08-15 14:48:08 +02:00
|
|
|
#workspaces button {
|
2018-08-15 14:58:55 +02:00
|
|
|
padding: 0 5px;
|
2018-08-08 23:54:58 +02:00
|
|
|
background: transparent;
|
|
|
|
color: white;
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
}
|
|
|
|
|
2018-08-15 15:03:51 +02:00
|
|
|
#workspaces button.focused {
|
2018-08-08 23:54:58 +02:00
|
|
|
background: #64727D;
|
|
|
|
border-bottom: 3px solid white;
|
|
|
|
}
|
|
|
|
|
2018-10-30 13:44:44 +01:00
|
|
|
#mode {
|
|
|
|
background: #64727D;
|
|
|
|
border-bottom: 3px solid white;
|
|
|
|
}
|
|
|
|
|
2019-02-17 15:27:54 +01:00
|
|
|
#clock, #battery, #cpu, #memory, #backlight, #network, #pulseaudio, #custom-spotify, #tray, #mode, #idle_inhibitor {
|
2018-08-08 23:54:58 +02:00
|
|
|
padding: 0 10px;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#clock {
|
2018-08-09 01:54:33 +02:00
|
|
|
background-color: #64727D;
|
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#battery {
|
2018-08-09 01:42:52 +02:00
|
|
|
background-color: #ffffff;
|
|
|
|
color: black;
|
2018-08-08 23:54:58 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#battery.charging {
|
2018-08-09 01:42:52 +02:00
|
|
|
color: white;
|
2018-08-08 23:54:58 +02:00
|
|
|
background-color: #26A65B;
|
|
|
|
}
|
2018-08-09 01:42:52 +02:00
|
|
|
|
2018-08-11 13:03:35 +02:00
|
|
|
@keyframes blink {
|
|
|
|
to {
|
|
|
|
background-color: #ffffff;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:09:01 +01:00
|
|
|
#battery.critical:not(.charging) {
|
2018-08-11 12:49:28 +02:00
|
|
|
background: #f53c3c;
|
|
|
|
color: white;
|
2018-08-11 13:03:35 +02:00
|
|
|
animation-name: blink;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
2018-08-11 12:49:28 +02:00
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#cpu {
|
2018-08-09 01:54:33 +02:00
|
|
|
background: #2ecc71;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#memory {
|
2018-08-09 01:42:52 +02:00
|
|
|
background: #9b59b6;
|
|
|
|
}
|
2018-08-09 16:38:24 +02:00
|
|
|
|
2019-02-10 10:35:19 +01:00
|
|
|
#backlight {
|
|
|
|
background: #90b1b1;
|
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#network {
|
2018-08-09 16:38:24 +02:00
|
|
|
background: #2980b9;
|
|
|
|
}
|
2018-08-09 23:55:38 +02:00
|
|
|
|
2018-08-17 14:24:00 +02:00
|
|
|
#network.disconnected {
|
|
|
|
background: #f53c3c;
|
|
|
|
}
|
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#pulseaudio {
|
2018-08-09 23:55:38 +02:00
|
|
|
background: #f1c40f;
|
|
|
|
color: black;
|
|
|
|
}
|
2018-08-10 00:02:50 +02:00
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#pulseaudio.muted {
|
2018-08-10 00:02:50 +02:00
|
|
|
background: #90b1b1;
|
|
|
|
color: #2a5c45;
|
|
|
|
}
|
2018-08-10 16:26:46 +02:00
|
|
|
|
2018-08-15 14:48:08 +02:00
|
|
|
#custom-spotify {
|
2018-08-10 16:26:46 +02:00
|
|
|
background: #66cc99;
|
|
|
|
color: #2a5c45;
|
|
|
|
}
|
2018-08-29 20:36:39 +02:00
|
|
|
|
|
|
|
#tray {
|
|
|
|
background-color: #2980b9;
|
2018-11-01 22:00:38 +01:00
|
|
|
}
|
2019-02-17 15:27:54 +01:00
|
|
|
|
|
|
|
#idle_inhibitor {
|
2019-02-22 17:34:13 +01:00
|
|
|
background-color: #2d3436;
|
2019-02-17 15:27:54 +01:00
|
|
|
}
|