如何获取当前打开的Firefox窗口数?

时间:2014-07-29 13:22:08

标签: firefox xdotool

我试过了xdotool search --name firefox | wc -l,但是当只打开一个窗口时,它会显示奇怪的数字,如8,11或更多。有任何想法吗?谢谢!

1 个答案:

答案 0 :(得分:1)

尝试使用--onlyvisible选项。像这样:

xdotool搜索--onlyvisible --name firefox | wc -l <​​/ p>

它在这里工作。也许它也适合你。