我可以使用在Ubuntu上的wine中运行的wmctrl
关闭窗口吗?
对于上下文:
$ wmctrl -m
Name: compiz
Class: N/A
PID: N/A
Window manager's "showing the desktop" mode: OFF
还:
$ wmctrl -l
0x0240a3be -1 mjol N/A
0x02000003 0 mjol Top Expanded Edge Panel
0x0200004c 0 mjol Bottom Expanded Edge Panel
0x01e00024 0 mjol x-nautilus-desktop
0x04800253 0 mjol using wmctrl to close windows - Stack Overflow - Google Chrome
0x03c0c8c3 0 mjol Terminal
0x03c53f25 0 mjol Terminal
0x04400001 0 mjol Untitled - SketchUp
0x04400003 0 mjol Instructor
0x04400009 0 mjol SketchUp
我要关闭的窗口是最后一个窗口:
0x04400009 0 mjol SketchUp
我尝试了以下方法:
$ wmctrl -c "SketchUp"
$ wmctrl -c 0x04400009
$ wmctrl -i 0x04400009
$ wmctrl -c -i 0x04400009
但是什么都行不通。
最佳答案
也许有点晚,但现在第一次见。
读取wmctrl的信息后,它说正确的语法是actions
之前的'options',而-i
是一个选项,-c
是一个 Action 。试试wmctrl -i -c 0x04400009
关于window - 使用wmctrl关闭窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5329397/