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