From b2403debf7a8afa190096302fe56478f1dfe6e06 Mon Sep 17 00:00:00 2001 From: Emerson Coskey Date: Sun, 5 Oct 2025 17:29:08 -0700 Subject: [PATCH] typos --- Services/MatugenService.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Services/MatugenService.qml b/Services/MatugenService.qml index d7b90548..6eb8d108 100644 --- a/Services/MatugenService.qml +++ b/Services/MatugenService.qml @@ -434,14 +434,13 @@ Singleton { `mkdir -p ${colorsPathParent}`, // copy theme file to terminal config directory `cp -f ${terminalColorsTemplate} ${colorsPath}`, - // apply terminal + // apply theme config `${colorsApplyScript} ${terminal}`, ] }) .reduce((arr1, arr2) => arr1.concat(arr2), []) // can't use .flatMap in Qt's environment .join("; ") - // Finally execute all copies at once. if (copyCmd !== "") { //console.log(copyCmd) copyProcess.command = ["bash", "-lc", copyCmd]