1

我正在使用 Alfred 工作流程/全局热键来运行 bash 脚本:

  1. 触发热键
  2. 动作运行脚本

我正在考虑使用open -a Google\ Chrome,但我想不出打开新标签的方法。这将是一个非常有用的工具,我很好奇其他人是否已经这样做或找到了一种方法来做到这一点。

4

2 回答 2

3

不知道为什么,但这恰好取决于您传递的 URL。这将在现有窗口中打开:$ google-chrome about:blank但这会在新页面中打开:$ google-chrome chrome://newtab

于 2016-08-19T18:21:47.127 回答
1

好的,所以这个答案并不完美,但它肯定适用于 OSX,这要感谢 OS Automator

差不多,我只是模拟一个CMD+T按键

open -a Google\ Chrome; osascript -e 'tell application "System Events" to keystroke "t" using {command down}'`
于 2016-08-17T12:25:38.810 回答