我有读您可以使用参数在 Windows 中以信息亭模式启动 Google Chrome --kiosk
。
我知道如何在 Windows 上执行此操作,但是如何在 Mac OS X 上执行此操作?
我怎样才能--kiosk
在启动时使用该参数来运行 Google Chrome?
答案1
这适用于 macOS:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --kiosk
答案2
使用该命令可能更好open
(如果应用程序不在应用程序文件夹中)。例如:open -a "Google Chrome" --args --kiosk http://www.example.com
答案3
在 AppleScript 中,粘贴以下文本:
do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --kiosk"
将其保存为应用程序并将其添加到启动项中。
答案4
您可以创建别名以通过命令行打开网站或文件。为此,您可以在 的末尾添加~/.bashrc
,~/.bash_profile
或~/.aliases
以下行:
# Google Chrome Alias
google-chrome() {
open -a "Google Chrome" "$1"
}