From ec5f441c5d0c7919e994a6e3e90c9587d4e87748 Mon Sep 17 00:00:00 2001 From: Wings Date: Sat, 1 Jun 2024 17:09:43 +0800 Subject: [PATCH] fix: set default focus_animation to none --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 4902a24..07bdcb8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -179,7 +179,7 @@ APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) { HyprlandAPI::addConfigValue(PHANDLE, "plugin:hyprfocus:animate_floating", Hyprlang::INT{1}); HyprlandAPI::addConfigValue(PHANDLE, "plugin:hyprfocus:focus_animation", - Hyprlang::STRING("flash")); + Hyprlang::STRING("none")); HyprlandAPI::addDispatcher(PHANDLE, "animatefocused", &flashCurrentWindow); #ifdef FLASH