gpt4 book ai didi

linux - Ubuntu BASH 脚本后台作业隐藏 Windows

转载 作者:太空宇宙 更新时间:2023-11-04 09:47:44 25 4
gpt4 key购买 nike

我有一个看似简单的问题,但我不知道如何解决。

我有一个 bash 脚本,它在后台循环启动一个程序。但是,每次打开程序时,它都会启动一个窗口并聚焦在该窗口上。有没有办法启动一个进程并使其启动的所有窗口最小化或完全抑制?

这是我的代码:

#!/bin/bash
while true; do
process1 & P=$!; #I need to hide all of the windows in this process
process2;
kill $P;
wait;
sleep 0.1; done

感谢您的帮助。

最佳答案

使用 xdotool,将 name_in_titlebar 替换为标题栏中的名称 :D

xdotool search --name name_in_titlebar windowactivate
xdotool key ctrl+super+Up

关于linux - Ubuntu BASH 脚本后台作业隐藏 Windows,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14468529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com