We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, right now I'm trying some of the basic examples.
I have written the following short snippets:
Key.on('z', ['control', 'shift'], () => { const test = App.launch('Whatsapp', {focus: true}); if (test) { test.windows().map((cb) => cb.setTopLeft({ x: 0, y: 0, }), ); } }) Key.on('l', ['control', 'shift'], () => { const focused = App.focused(); console.log(focused.name()); })
And launching apps like "Whatsapp" or "Slack" works like a charm. But another app named "Rocket.Chat" won't start at all.
Terminal logs give the following output: Phoenix: Error: Could not find an app with the name “Rocket.Chat”.
Phoenix: Error: Could not find an app with the name “Rocket.Chat”.
Trying the second shortcut over the focused window prints the following output: Phoenix: Rocket.Chat
Phoenix: Rocket.Chat
That's why I think, that names with dots are not supported. Is there a way to launch apps with their PID?
By the way: Thanks for maintaining this framework.
The text was updated successfully, but these errors were encountered:
@ishiharas Interesting, thanks for the report and sorry for the trouble! I will need to look into this. Thanks for the kind words. ☺️
Sorry, something went wrong.
No branches or pull requests
Hello,
right now I'm trying some of the basic examples.
I have written the following short snippets:
And launching apps like "Whatsapp" or "Slack" works like a charm.
But another app named "Rocket.Chat" won't start at all.
Terminal logs give the following output:
Phoenix: Error: Could not find an app with the name “Rocket.Chat”.
Trying the second shortcut over the focused window prints the following output:
Phoenix: Rocket.Chat
That's why I think, that names with dots are not supported.
Is there a way to launch apps with their PID?
By the way: Thanks for maintaining this framework.
The text was updated successfully, but these errors were encountered: