デュアルスクリーン設定で、ウィンドウを左画面から右画面に移動するbashスクリプトがあります。現在、それが機能する方法は、xdotool search --onlyvisible --maxdepth 2 --class ""
で指定されたウィンドウIDを循環し、画面の幅だけ右に移動することです。問題のウィンドウが最大化または最小化されていない限り、すでに機能しています。
したがって、必要なのは、ウィンドウの現在のステータスを確認する方法です。これらのビットを追加および削除する方法を提供する 回答 を見つけましたが、それらがすでに設定されているかどうかを確認する方法はどこにありますか?
xdotoolで実行できない場合は、上記のコマンドで提供されたウィンドウIDを再利用できるはずです。
コマンドから情報(およびそれ以上)を取得できます。
xprop -id <window_id>
具体的に探しているものを取得するには:
xprop -id 0x04c00010 | grep "_NET_WM_STATE(ATOM)"
出力は次のようになります。
_NET_WM_STATE(ATOM) = _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_HIDDEN
最大化(h + v)と同時に最小化されたウィンドウ、または単に
_NET_WM_STATE(ATOM) =
(またはまったく出力されない)これらのいずれも該当しない場合。
もちろん、さまざまな言語を使用して、python以下のスニペット。 window-shuffler のスニペット)のように、 Wnck を使用できます。スニペットはリストを出力し、ウィンドウ名+ True
またはFalse
(最小化)を示します。
#!/usr/bin/env python3
import gi
gi.require_version('Wnck', '3.0')
from gi.repository import Wnck
def get_winlist(scr=None, selecttype=None):
"""
get the window list. possible args: screen, select_type, in case it is
already fetched elsewhere. select type is optional, to fetch only
specific window types.
"""
if not scr:
scr = Wnck.Screen.get_default()
scr.force_update()
windows = scr.get_windows()
if selecttype:
windows = [w for w in windows if check_windowtype(w, selecttype)]
return windows
wlist = get_winlist()
for w in wlist:
print(w.get_name(), ",", w.is_maximized())
出力は次のようになります。
Wnck.Window - Classes - Wnck 3.0 - Mozilla Firefox , True
Postvak IN - [email protected] - Mozilla Thunderbird , True
Showtime , False
settingsexample.vala - Visual Studio Code , False
*Niet-opgeslagen document 1 - gedit , False
desktop_weather , False
Tilix: Standaard , False
xprop
は、16進数(たとえばwmctrl
からの出力)と10進数(たとえばxdotool
からの出力)の両方のIDを等しく扱います。どちらかを使用:
xprop -id 111371626
または
xprop -id 0x06a3656a
メソッドはWaylandでは機能しません!