From acfa95859736ddcaa60d76e1ee745243011e4c51 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sun, 14 Jul 2024 17:24:33 +0200 Subject: [PATCH] fix(waybar): now blink --- config/services/octoprint.nix | 2 +- users/common/graphical/wayland/waybar/waybar.css | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/config/services/octoprint.nix b/config/services/octoprint.nix index 2ec57dd..ee10cc5 100644 --- a/config/services/octoprint.nix +++ b/config/services/octoprint.nix @@ -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; diff --git a/users/common/graphical/wayland/waybar/waybar.css b/users/common/graphical/wayland/waybar/waybar.css index 9399902..f092a8c 100644 --- a/users/common/graphical/wayland/waybar/waybar.css +++ b/users/common/graphical/wayland/waybar/waybar.css @@ -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; }