fix(waybar): now blink
This commit is contained in:
parent
e0cdea8c88
commit
acfa958597
|
@ -6,7 +6,7 @@
|
|||
services.octoprint = {
|
||||
port = 3000;
|
||||
enable = true;
|
||||
plugins = ps: with ps; [ender3v2tempfix costestimation themeify dashboard];
|
||||
plugins = ps: with ps; [ender3v2tempfix costestimation themeify dashboard displaylayerprogress];
|
||||
extraConfig = {
|
||||
accessControl = {
|
||||
addRemoteUser = true;
|
||||
|
|
|
@ -96,12 +96,18 @@ button:hover {
|
|||
|
||||
@keyframes blink {
|
||||
|
||||
0%,
|
||||
0% {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
49% {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
50%,
|
||||
50% {
|
||||
background-color: #e05f65;
|
||||
}
|
||||
|
||||
100% {
|
||||
background-color: #e05f65;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue