web-dev-qa-db-ja.com

タスクバー順にウィンドウを切り替えるにはどうすればよいですか?

どちらかを変えたい Alt + Tab または、異なるホットキーの組み合わせを設定して、すべてのウィンドウを左右に循環させてください。ここでは、最近使用したMRUは適用できません。

検索中に、Windowsまたは他のディストリビューションでcompizを使用する方法を見つけましたが、Ubuntuでは使用できませんでした。

6
user643974

ウィンドウを左から右に切り替えます

(現在のビューポートのみ、またはすべてのビューポートで)

ショートカットキーに追加された以下のスクリプトは、ウィンドウを左から右に順に切り替えます。

enter image description here

スクリプト

#!/usr/bin/env python3
import subprocess
from operator import itemgetter
import sys

this_ws = True if "oncurrent" in sys.argv[1:] else False
nxt = -1 if "backward" in sys.argv[1:] else 1

def get(command):
    try:
        return subprocess.check_output(command).decode("utf-8").strip()
    except subprocess.CalledProcessError:
        pass

def exclude(w_id):
    # exclude window types; you wouldn't want to incude the launcher or Dash
    exclude = ["_NET_WM_WINDOW_TYPE_DOCK", "_NET_WM_WINDOW_TYPE_DESKTOP"]
    wdata = get(["xprop", "-id", w_id])
    return any([tpe in wdata for tpe in exclude])

if this_ws:
    # if only windows on this viewport should be picked: get the viewport size
    resdata = get("xrandr").split(); index = resdata.index("current")
    res = [int(n.strip(",")) for n in [resdata[index+1], resdata[index+3]]]

# get the window list, geometry
valid = [w for w in sorted([[w[0], int(w[2]), int(w[3])] for w in [
    l.split() for l in get(["wmctrl", "-lG"]).splitlines()
    ]], key = itemgetter(1)) if not exclude(w[0])]

# exclude windows on other viewports (if set)
if this_ws:
    valid = [w[0] for w in valid if all([
        0 <= w[1] < res[0], 0 <= w[2] < res[1]
        ])]
else:
    valid = [w[0] for w in valid]

# get active window
front = [l.split()[-1] for l in get(["xprop", "-root"]).splitlines() if \
         "_NET_ACTIVE_WINDOW(WINDOW)" in l][0]

# convert xprop- format for window id to wmctrl format
current = front[:2]+((10-len(front))*"0")+front[2:]

# pick the next window
try:
    next_win = valid[valid.index(current)+nxt]
except IndexError:
    next_win = valid[0]

# raise next in row
subprocess.Popen(["wmctrl", "-ia", next_win])

使い方

  1. スクリプトには wmctrl が必要です

    Sudo apt-get install wmctrl
    
  2. スクリプトを空のファイルにコピーし、cyclewins.pyとして保存します

  3. スクリプトをショートカットキーに追加します。[システム設定]> [キーボード]> [ショートカット]> [カスタムショートカット]を選択します。 「+」をクリックして、コマンドを追加します。

    python3 /path/to/cyclewins.py
    

それでおしまい

現在のビューポートでウィンドウのみを切り替えますか?

現在のビューポート上のウィンドウのみを循環させたい場合は、引数oncurrentを持つスクリプト:

python3 /path/to/cyclewins.py oncurrent

後方に循環しますか?

右から左に循環する場合は、引数backwardを指定してスクリプトを実行します。

python3 /path/to/cyclewins.py backward

もちろん、2つの引数の組み合わせが可能です。

python3 /path/to/cyclewins.py backward oncurrent

現在のビューポートでウィンドウを逆方向に循環します。

4
Jacob Vlijm