triflux 6.0.8 โ 6.0.10
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 +3 -3
- package/package.json +1 -1
package/hub/team/headless.mjs
CHANGED
|
@@ -302,9 +302,9 @@ export function ensureWtProfile() {
|
|
|
302
302
|
icon: "\u{1F53A}", // ๐บ
|
|
303
303
|
tabTitle: "triflux",
|
|
304
304
|
suppressApplicationTitle: true,
|
|
305
|
-
opacity:
|
|
305
|
+
opacity: 40,
|
|
306
306
|
useAcrylic: true,
|
|
307
|
-
unfocusedAppearance: { opacity:
|
|
307
|
+
unfocusedAppearance: { opacity: 20 },
|
|
308
308
|
colorScheme: "One Half Dark",
|
|
309
309
|
font: { size: 11 },
|
|
310
310
|
hidden: true, // ํ๋กํ ๋ชฉ๋ก์๋ ์จ๊น (triflux์์๋ง ์ฌ์ฉ)
|
|
@@ -350,7 +350,7 @@ export function autoAttachTerminal(sessionName, opts = {}) {
|
|
|
350
350
|
for (const shell of shells) {
|
|
351
351
|
try {
|
|
352
352
|
execSync(
|
|
353
|
-
`start "" /b wt.exe nt --profile triflux --title triflux -- ${shell} -
|
|
353
|
+
`start "" /b wt.exe nt --profile triflux --title triflux -- ${shell} -Command "psmux attach -t ${sessionName}"`,
|
|
354
354
|
{ stdio: "ignore", shell: true, timeout: 5000 },
|
|
355
355
|
);
|
|
356
356
|
return true;
|