View Single Post
Quote:
Originally Posted by Guus View Post
in Hazel I can't select the file in the finder, it's grayed-out.
To ungray it in the Hazel dialog you need to make the .sh text file executable.
  • Open Terminal.app
  • On the bash command line, type
    Code:
    chmod +x
    (followed by a space)
  • Drag and drop the .sh file from a Finder window to the Terminal window

You should now be looking at something analogous to:

Code:
chmod +x /Users/houthakker/Desktop/test.sh
and if you hit the enter key, the file will be made executable, and should now be shown as ungrayed and selectable in the Hazel dialog.

--