chore: uptick

This commit is contained in:
Brooklyn Nicholson 2026-04-03 19:55:15 -05:00
parent fab4d8d470
commit 56a69e519b
3 changed files with 21 additions and 16 deletions

3
ui-tui/src/lib/osc52.ts Normal file
View file

@ -0,0 +1,3 @@
export function writeOsc52Clipboard(s: string): void {
process.stdout.write('\x1b]52;c;' + Buffer.from(s, 'utf8').toString('base64') + '\x07')
}