GUIを使用してLinuxシステムでインターネット速度を確認するスクリプトを実行しようとしています。端末ウィンドウを閉じてクエリが完了すると、ウィンドウは応答を提供します。今は窓を下げることはできますが、上げることはできません。
#!/bin/bash
xdotool getactivewindow windowminimize
#xdotool set_window --name speedy
#xdotool set_window --icon-name speedy
speedtest-cli --simple
if [ $? -eq 0 ]
then
#xdotool windowactivate speedy
xdotool windowfocus #speedy
xdotool key "F11"
fi
exec $SHELL
答え1
xdotool
すべてのタスクのウィンドウIDを知る必要があります。これを正しく使用してgetactivewindow
コマンドのウィンドウを取得しますが、windowminimize
名前を設定するにはこの操作も実行する必要があります。だから
xdotool getactivewindow set_window --name speedy
ラインを最小化する前に。
search
その後、それを使用して後でアクティブにしたときに見つけることができます。
xdotool search --name speedy windowactivate
マンページのセクションを参照してください。ウィンドウスタックそして命令体系すべてがどのように機能するかを説明します。
フルスクリプト:
#!/bin/bash
# rename the window for finding it again later
xdotool getactivewindow set_window --name speedy
xdotool search --name speedy windowminimize
speedtest-cli --simple
if [ $? -eq 0 ]
then
xdotool search --name speedy windowactivate
xdotool key "F11"
fi
答え2
xdotoolを使用してこれを行う方法はわかりませんが、以下はwmctrlを使用して単一のコマンドでウィンドウを上げて全画面モードに切り替える方法です。
#!/bin/sh
TITLE_OF_WINDOW_TO_BE_RAISED="Tor-Browser"
wmctrl -a $TITLE_OF_WINDOW_TO_BE_RAISED -b add,fullscreen
また、ウィンドウを含むデスクトップに切り替えて焦点を合わせます。
-a
ウィンドウを上げ、-b add,fullscreen
全画面プロパティを「追加」します。
答え3
xdotool
ウィンドウの名前を変更したくない場合は、以降のすべての操作で返される可能性のあるbash変数にその識別子を保存してください。
#!/bin/bash
WID=$(xdotool getactivewindow)
xdotool windowminimize $WID
speedtest-cli --simple
if [ $? -eq 0 ]
then
xdotool windowactivate $WID
xdotool key "F11" $WID
fi