Figma UI/UX?

2024-01-29 Thread Laurent Daudelin via Cocoa-dev
Anybody has any experience with the Figma tool? -Laurent. -- Laurent Daudelin laur...@nemesys-soft.com Logiciels Némésys Software

Re: Sending SIGUSR1 to a process

2024-01-29 Thread Alex Zavatone via Cocoa-dev
A long time ago, I was issuing terminal commands from Xcode. I’ve got a simple console app that executes a SIP export to PDF and another case where I was executing a sleep of the current process. You can even execute an Applescript to perform a terminal command. This may help. https://fo

Re: Sending SIGUSR1 to a process

2024-01-29 Thread Gabriel Zachmann via Cocoa-dev
> > Yes, this should work. The only changes I know of is that you can’t signal > some Apple processes these days if System Integrity Protection is engaged. I have tried it like the following, but to no avail: void signal_handler( int sig ) { logMessage( LogClient, [NSString stringWithFormat

Re: Sending SIGUSR1 to a process

2024-01-29 Thread Saagar Jha via Cocoa-dev
Yes, this should work. The only changes I know of is that you can’t signal some Apple processes these days if System Integrity Protection is engaged. Saagar Jha > On Jan 28, 2024, at 23:06, Gabriel Zachmann via Cocoa-dev > wrote: > > IIRC, one process cannot send a Unix signal to another one.