我有这个非常简单的 shellscript,我需要移动一个用 zenity 创建的对话框
#!/bin/bash
zenity --progress --title="Progress" --auto-close --no-cancel --text="Updating..."
wmctrl -r "Progress" -e 0,0,0,-1,-1
但它不起作用,如果您尝试其他 shell 中的命令可以正常工作,但在脚本中却不行。
我有这个非常简单的 shellscript,我需要移动一个用 zenity 创建的对话框
#!/bin/bash
zenity --progress --title="Progress" --auto-close --no-cancel --text="Updating..."
wmctrl -r "Progress" -e 0,0,0,-1,-1
但它不起作用,如果您尝试其他 shell 中的命令可以正常工作,但在脚本中却不行。