多数のプログラムを開いて、画面上のウィンドウを移動/サイズ変更するスクリプトを作成しようとしています。
例えば、
#!/bin/bash
zim
wmctrl -r Zim -b toggle,maximized_vert
wmctrl -r Zim -e 0,700,0,-1,-1
このスクリプトを実行すると、ウィンドウが最大化され、少し右に移動します。ただし、 をまたはzim
に置き換えると、ウィンドウの移動/サイズ変更に失敗します。firefox
acroread
wmctrl
ターミナルに入力すれば動作しますが、スクリプト内firefox
画面上の位置を記憶する方法と何か関係があるのではないかと思います。
編集:私は
firefox
wmctrl -lG
スクリプト内で次の出力が得られます。
0x03800032 0 1168 347 750 731 briareos emacs@briareos
0x02a00002 0 -2020 -1180 1920 1080 briareos XdndCollectionWindowImp
0x02a00005 0 0 24 47 1056 briareos unity-launcher
0x02a00008 0 0 0 1920 24 briareos unity-panel
0x02a0000b 0 -420 -300 320 200 briareos unity-dash
0x02a0000c 0 -420 -300 320 200 briareos Hud
0x03c00011 0 59 52 900 1026 briareos Notes - Zim
つまり、スクリプトは Firefox が起動されたことを認識しません。
答え1
問題
問題は、使用するコマンドの組み合わせでは、コマンドがwmctrl
成功するためには、アプリケーションのウィンドウが時間内に表示される「幸運」が必要であることです。
コマンドは、起動が速い軽量のアプリケーションではほとんどの場合機能する可能性がありますが、Inkscape、Firefox、Thunderbird などの他のアプリケーションでは機能しなくなります。
あなたできるコメントで述べたように、5 秒または 10 秒の中断を組み込みますが、必要以上に長く待つ必要があるか、プロセッサが占有されていてウィンドウが「通常よりも遅い」場合は結局中断します。
ソリューション
解決策としては、スクリプトに手順を追加し、ウィンドウが の出力に表示されるまで待機しwmctrl -lp
、その後コマンドを実行してウィンドウを最大化します。
以下の例ではpython
、ウィンドウのサイズを変更しましたが、私の経験では、この方法は目的を達成するxdotool
よりも少し強力です。wmctrl
#!/usr/bin/env python3
import subprocess
import getpass
import time
import sys
app = sys.argv[1]
# to only list processes of the current user
user = getpass.getuser()
get = lambda x: subprocess.check_output(x).decode("utf-8")
# get the initial window list
ws1 = get(["wmctrl", "-lp"]); t = 0
# run the command to open the application
subprocess.Popen(app)
while t < 30:
# fetch the updated window list, to see if the application's window appears
ws2 = [(w.split()[2], w.split()[0]) for w in get(["wmctrl", "-lp"]).splitlines() if not w in ws1]
# see if possible new windows belong to our application
procs = sum([[(w[1], p) for p in get(["ps", "-u", user]).splitlines() \
if app[:15].lower() in p.lower() and w[0] in p] for w in ws2], [])
# in case of matches, move/resize the window
if len(procs) > 0:
subprocess.call(["xdotool", "windowsize", "-sync", procs[0][0] , "100%", "100%"])
break
time.sleep(0.5)
t = t+1
使い方
スクリプトには
wmctrl
と の両方が必要ですxdotool
。sudo apt-get install wmctrl xdotool
スクリプトを空のファイルにコピーし、
resize_window.py
テスト - アプリケーションを引数としてスクリプトを実行します。例:
python3 /path/to/resize_window.py firefox
ノート
- スタートアップ アプリケーションでスクリプトとして使用すると、
wmctrl
ウィンドウ リストを取得するコマンドが早く実行される可能性がわずかにあります。問題が発生した場合は、手順全体にtry
/を追加する必要がありますexcept
。その場合は、お知らせください。