triflux 6.1.1 → 6.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hub/team/headless.mjs +1 -2
- package/package.json +1 -1
package/hub/team/headless.mjs
CHANGED
|
@@ -479,9 +479,8 @@ export function autoAttachTerminal(sessionName, opts = {}, workerCount = 2) {
|
|
|
479
479
|
"[System.Windows.Forms.SendKeys]::SendWait('^+{TAB}')",
|
|
480
480
|
].join("; ");
|
|
481
481
|
|
|
482
|
-
//
|
|
482
|
+
// WT new-tab은 --size 미지원 (window-level only). 기존 창(-w 0)에 탭 추가만.
|
|
483
483
|
const wtArgs = ["-w", "0", "nt", "--profile", "triflux", "--title", sessionName];
|
|
484
|
-
if (cols && rows) wtArgs.push("--size", `${cols},${rows}`);
|
|
485
484
|
wtArgs.push("--", "pwsh.exe", "-NoProfile", "-NoLogo", "-File", viewerScript);
|
|
486
485
|
|
|
487
486
|
try {
|