sourcegraph/thyme

thyme causes eclipse to launch on macOS 10.11.6

izzystardust opened this issue · 3 comments

https://github.com/sourcegraph/thyme/blob/master/darwin.go#L36 causes the variable listOfProcesses to include eclipse even when Eclipse is not running. When the script then tells every application from the list to get the windows on line 46, it is launched.

I just noticed this as well with the Atom editor on OSX El Capitan v 10.11.5.

Can you try changing

  set listOfProcesses to (every application process where background only is false)

to

  set listOfProcesses to (every application process where background only is false and visible is true)

Then reinstall with go get -u github.com/sourcegraph/thyme/cmd/thyme and tell us if it works?

Changed the line, shows the same behavior.