From 440d7ae9db2f71d5fadc14e74636345a10998efd Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Sat, 21 Dec 2024 20:05:42 -0800 Subject: [PATCH] Make the output of the matugen command quiet in order to only output the colors. (#585) --- src/services/matugen/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/matugen/index.ts b/src/services/matugen/index.ts index 7fa1432..2b93d52 100644 --- a/src/services/matugen/index.ts +++ b/src/services/matugen/index.ts @@ -31,7 +31,7 @@ export async function generateMatugenColors(): Promise 1 ? 1 : contrast.get() < -1 ? -1 : contrast.get(); const contents = await bash( - `matugen image ${wallpaperPath} -t scheme-${scheme_type.get()} --contrast ${normalizedContrast} --json hex`, + `matugen image -q ${wallpaperPath} -t scheme-${scheme_type.get()} --contrast ${normalizedContrast} --json hex`, ); return JSON.parse(contents).colors[options.theme.matugen_settings.mode.get()];