我在互联网上查看了很多答案,但没有任何解决方案有帮助。当我刚做open http://google.com
时,我的默认浏览器是谷歌浏览器。我通过 brew 下载了 xdotool 包我想做的是,打开网页(任何网页)并每 10 秒刷新一次,我有以下代码:
#!/bin/bash
while true;
do
export DISPLAY=:0.0
export XAUTHORITY=/home/dogaister/.Xauthority
open http://google.com
xdotool key command+r
sleep 10
done
我也试过DISPLAY=':0'
or DISPLAY=':0.0'
,他们也没有工作。