This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Don't output the preamble in plain mode

Nathan Herald (Mar 10, 2026, 10:45 AM +0100) 2d367920 d6e4fdce

+4 -1
+4 -1
src/client.ts
··· 101 101 case MessageType.SCREEN: 102 102 stdout.write(packet.payload); 103 103 if (!follow) { 104 - stdout.write(TERMINAL_SANITIZE + CURSOR_TO_BOTTOM + "\n"); 104 + if (!options.plain) { 105 + stdout.write(TERMINAL_SANITIZE + CURSOR_TO_BOTTOM); 106 + } 107 + stdout.write("\n"); 105 108 socket.destroy(); 106 109 return; 107 110 }