@sandra.kaercher said in Flic for Mac?:
I'm using the lockscreen.applescript that came with the file but I'm getting a "File not executable. File path is not executable. /User/MYNAME/Documents/lockscreen.applescript" error. The sleep.sh script seems to work fine.
Anyone experienced this?
Hello, I don't exactly know which script you are referring to since the repository does not contain a script named 'lockscreen.applescript'. The error , however, suggests that you are trying to execute a file that you do not have permission to execute. You can look up the file permissions by going to the correct path in the terminal and then run ls -l
. Here is an article that explains file permissions in more details if you are curious. But in short, you should see at lest one 'x' in the file permission list for that file. If not, then simply run chmod +x your_script_file
to add the execute permission.
Did any of this help?