I create this applescript (logout.scpt) which close active user session :
tell application "System Events" to keystroke "q" using {command down, option down, shift down}
In my cocoa app, I have a logout button and an IBAction link this button. With an NSLog in this IBAction and when I click on my button, NSLog work.
But, if I put this code in my IBAction, nothing appends :
NSTask *logout = [[NSTask alloc] init];
[logout setLaunchPath:@"/usr/sbin/logoutkill"];
[logout launch];
Content of logoutkill bash script:
#!/bin/bash
/usr/bin/osascript /usr/sbin/logout.scpt
If I launch this bash script in a terminal with the same user, it's work and session close.
Why my code doesn't work ?