From 0c4dd5c3d613dea36b3f48eb3aaaa9e8a8f8bb13 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 6 Nov 2025 09:25:56 -0300 Subject: [PATCH] fix: CRUSH_REDUCE_ANIMATIONS Signed-off-by: Carlos Alexandro Becker --- internal/config/load.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/config/load.go b/internal/config/load.go index cb33527a671ca63fc87b3a6a57e92266afa5f17b..4f629846175890f1dd7ec31ea49198711a7ee286 100644 --- a/internal/config/load.go +++ b/internal/config/load.go @@ -78,6 +78,9 @@ func Load(workingDir, dataDir string, debug bool) (*Config, error) { slog.Warn("Running over SSH, will enable reduce animations") assignIfNil(&cfg.Options.TUI.ReduceAnimations, true) } + if b, _ := strconv.ParseBool(os.Getenv("CRUSH_REDUCE_ANIMATIONS")); b { + assignIfNil(&cfg.Options.TUI.ReduceAnimations, true) + } // Load known providers, this loads the config from catwalk providers, err := Providers(cfg)