不运行时自动使用bash脚本重新启动firefox

时间:2018-09-06 12:59:54

标签: bash ubuntu xdotool

我正在使用使用Firefox的自助服务终端应用程序,并且要确保它崩溃时会全屏重启

如果没有这样的xdotool行,代码可以很好地工作

#!/bin/bash

while true
do
if [ ! `pgrep firefox-bin` ];then
firefox -url http://localhost   
fi
sleep 5
done

但是如果我将xdotool行添加为全屏显示,它将保持每5秒打开Firefox

#!/bin/bash

while true
do
if [ ! `pgrep firefox-bin` ];then
firefox -url http://localhost &
xdotool search --sync --onlyvisible --class "Firefox" windowactivate key F11 
fi
sleep 5
done

我的脚本中的错误在哪里? 谢谢

0 个答案:

没有答案