-
Notifications
You must be signed in to change notification settings - Fork 512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged many good pull requests for you #409
base: master
Are you sure you want to change the base?
Conversation
Including a description for how to turn on the Accessibility API for OS X 10.9 Mavericks.
Found with XCode 5's static analyis tool
This can be useful to distinguish between apps like Chrome and Chrome Canary (which both report their name as "Google Chrome" but have bundle identifiers `com.google.Chrome` and `com.google.Chrome.canary` respectively). This can be used in a `.slate.js` to do things like the following, which is a layout that pushes Canary windows to the left half of the screen and normal Chrome windows to the right half: slate.layout('my-layout', { 'Google Chrome': { operations: [function(window) { var app = window.app(); if (app.bundleIdentifier() === 'com.google.Chrome.canary') { // code to push window left } else { // code to push window right } }], repeat: true, }, });
@trishume Thanks a lot! |
👍 |
@trishume It may also be helpful to explain which PRs you did not merge and why not. |
At this point I forget. One criteria was I only merged PRs that were complete and ready to merge. In the case of duplicates I only merged whichever one looked nicer. I also only merged PRs which I believed would be non-controversial. If something looked like some people might disagree with it being merged (or somebody had already voiced concerns) then I didn't add it. |
using version from jigish/slate#409
This PR is an amalgamation of the merging of many of the good pull requests that have been submitted but not merged. I've compiled and tested them and they all work together.
Anyone who wants an app package with all these changes can download one here (not signed sorry):
http://thume.net/downloads/Slate.zip
@jigish if you don't want to look at individual PRs you can just merge this one.
Creators of PRs in this one: @josh- @napcae @jpsim @mattr- @wincent @georg