4b384a7581
- Update menu.ts and selector.ts to use isStdinTTY() and function-based terminal colors - Refactor index.ts from 995-line monolith to ~270-line dispatcher that registers all commands via the CLI parser and delegates to modules - Add initTTY() call at startup for correct pipe/TTY detection - Interactive menu expanded to include new commands (explain, review, changelog, suggest, amend)
27 lines
770 B
TypeScript
27 lines
770 B
TypeScript
export async function copyToClipboard(text: string): Promise<boolean> {
|
|
const commands: string[][] = [];
|
|
|
|
if (process.platform === "darwin") {
|
|
commands.push(["pbcopy"]);
|
|
} else if (process.platform === "linux") {
|
|
commands.push(["xclip", "-selection", "clipboard"]);
|
|
commands.push(["xsel", "--clipboard", "--input"]);
|
|
}
|
|
|
|
for (const cmd of commands) {
|
|
try {
|
|
const proc = Bun.spawn(cmd, {
|
|
stdin: "pipe",
|
|
stdout: "ignore",
|
|
stderr: "ignore",
|
|
});
|
|
proc.stdin.write(text);
|
|
proc.stdin.end();
|
|
const exitCode = await proc.exited;
|
|
if (exitCode === 0) return true;
|
|
} catch {}
|
|
}
|
|
|
|
return false;
|
|
}
|