使用特定窗口大小从命令行打开 google-chrome

使用特定窗口大小从命令行打开 google-chrome

当我运行以下命令时: nohup google-chrome-stable --incognito --window-size="770,570" index.html /dev/null &

当没有打开 chrome 窗口时,它可以工作。否则,它会以与旧窗口相同的大小打开。

我怎样才能解决这个问题?

我在 bashrc 中写了一个函数,以便可以创建一个 html 目录并高效地编辑其中的文件。代码是该函数的一部分。

我正在使用 Ubuntu 20.04 及其版本的 bash。

答案1

使用--new-window

nohup google-chrome-stable --incognito --window-size="770,570" index.html /dev/null ----new-window &

相关内容