jigish / slate

A window management application (replacement for Divvy/SizeUp/ShiftIt)
GNU General Public License v3.0
7.84k stars 509 forks source link

S.eachApp not getting all Applications #504

Open ajmathews opened 6 years ago

ajmathews commented 6 years ago

I am using the S.eachApp in my .slate.js but all the running applications do not come through. Usually it is a very small subset of all the applications. Is there any other factor that might be governing what come back?

S.eachApp((appObj) => {
  log('eachApp got this app ' + appObj.name());
  doOperations(appObj.name());
});