如何以编程方式关闭ubuntu中的弹出窗口?
我可以在OSX上使用AppleScript来实现:
tell application "System Events"
tell process "SketchUp"
set frontmost to true
keystroke return
end tell
end tell
现在我正在寻找Ubuntu(版本10.10)上的等价物。
答案 0 :(得分:0)
您要安装wmctrl
软件包,然后安装man wmctrl
以查看如何使用它来选择窗口并要求它们关闭。 (我会提供更多详细信息,但我的Ubuntu VM正在升级到Natty。)
好的,使用我的虚拟机备份,因为Natty和Parallels Tools之间没有相互交谈(
)jinx:1458 Z$ wmctrl -l
0x03e00037 0 jinx jinx {allbery} [~//lib]
0x03e00027 0 jinx jinx {allbery} [~]
0x03e00042 0 jinx jinx {allbery} [////xkb]
jinx:1459 Z$ wmctrl -c -i 0x03e00042
jinx:1460 Z$ _
默认情况下(没有-i
)它与窗口标题匹配。