fix(waybar): now blink

This commit is contained in:
Patrick 2024-07-14 17:24:33 +02:00
parent e0cdea8c88
commit acfa958597
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
2 changed files with 9 additions and 3 deletions

View file

@ -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;

View file

@ -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;
}