OSX bash - 窗口专注于启动的可执行文件/应用程序?
如果我从 bash 脚本启动可执行文件/另一个应用程序,则该可执行文件/应用程序会正常启动,但其应用程序窗口不处于焦点。 例如,如果您从窗口启动脚本,则 bash 脚本会调用其他可执行文件/应用程序,但您看不到该应用程序的界面,因为它是在所有窗口下启动的。
对于 Linux,存在一些可以执行此操作的窗口管理器,例如这些提示 此处:
OSX 也有一些东西吗?
我意识到我可以通过AppleScript(通过bash的osascript)设置活动窗口,但我想在没有AS的情况下做到这一点。
("告诉应用程序\"newapp\" 激活”)
If i launch a executable/another app from a bash script, this executable/app starts up normally, but with it's application window not in focus.
If you launch the script from a window for example, the bash script calls upon the other executable/app, but you can't see the app's interface because it gets launched below all windows.
For Linux there exist some window managers that can do this, like these tips here:
Is there something for OSX as well?
I realize i can set the active window via AppleScript (osascript via bash), but i wanted to do this without AS.
("tell application \"newapp\" to
activate")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的 appswitch 工具正是这样做的。
My appswitch tool does exactly this.