2021-08-16 22:21:31 +08:00
|
|
|
* {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
2022-03-29 18:02:47 +08:00
|
|
|
font-size: 13px;
|
2021-08-16 22:21:31 +08:00
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
@import "serenade.css";
|
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
window#waybar {
|
2022-03-29 18:02:47 +08:00
|
|
|
background: @background;
|
2022-03-29 18:07:55 +08:00
|
|
|
border-bottom: 2px solid @aqua;
|
2022-03-29 18:02:47 +08:00
|
|
|
color: @white_b;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces {
|
2021-09-04 15:36:57 +08:00
|
|
|
margin: 5px 10px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
2022-03-29 18:02:47 +08:00
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
#workspaces button {
|
2022-03-29 18:02:47 +08:00
|
|
|
padding: 0 5px;
|
|
|
|
background: transparent;
|
|
|
|
color: @foreground;
|
|
|
|
border-bottom: 2px solid transparent;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.focused {
|
2022-03-29 18:02:47 +08:00
|
|
|
background: @foreground;
|
|
|
|
color: @selection_background;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
2022-03-29 18:02:47 +08:00
|
|
|
background-color: @magenta;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
#mode,
|
2021-08-16 22:21:31 +08:00
|
|
|
#clock,
|
2022-03-29 18:02:47 +08:00
|
|
|
#battery {
|
|
|
|
padding: 0 10px;
|
|
|
|
margin: 0 5px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
#clock {
|
2022-03-29 18:02:47 +08:00
|
|
|
background-color: @green;
|
|
|
|
color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery {
|
|
|
|
background-color: @yellow;
|
|
|
|
color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery.charging {
|
|
|
|
color: @background;
|
|
|
|
background-color: @green;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
to {
|
2022-03-29 18:02:47 +08:00
|
|
|
background-color: @white_b;
|
|
|
|
color: @background;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
/* #idle_inhibitor, */
|
|
|
|
/* #pulseaudio, */
|
|
|
|
/* #custom-openvpn, */
|
|
|
|
/* #network, */
|
|
|
|
/* #cpu, */
|
|
|
|
/* #memory, */
|
|
|
|
/* #temperature, */
|
|
|
|
/* #backlight, */
|
|
|
|
/* #battery, */
|
|
|
|
/* #clock, */
|
|
|
|
/* #tray { */
|
|
|
|
/* padding: 0 6px; */
|
|
|
|
/* margin: 0 3px; */
|
|
|
|
/* } */
|
|
|
|
|
|
|
|
#clock,
|
|
|
|
#battery,
|
|
|
|
#network,
|
|
|
|
#custom-notification,
|
|
|
|
#custom-player {
|
|
|
|
padding: 0px 10px;
|
|
|
|
margin: 0px 5px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
#clock {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery.warning:not(.charging) {
|
|
|
|
background: @red;
|
|
|
|
color: @white_b;
|
2021-08-16 22:21:31 +08:00
|
|
|
animation-name: blink;
|
2022-03-29 18:02:47 +08:00
|
|
|
animation-duration: 0.5s;
|
2021-08-16 22:21:31 +08:00
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
}
|