XFCE-キーストロークでウィンドウを他のモニターに送信


27

Xubuntu 11.10をデュアルモニターセットアップで実行しています。キーストロークを作成しようとしています(CTRL+ ALT+ SPACEを選択すると、選択したウィンドウを次のモニターに送信できます)。

GNOMEにはswapmonitor、他のモニターにウィンドウを送信できるパッケージがあります。キーストロークでこのプログラムを呼び出すと、同じ効果が得られます。

これはXFCE / Xubuntuでどのように行われますか?


swapmonitorXubuntuにアクセスできませんか?または、キーボードショートカットを設定する方法を尋ねていますか?
ire_and_curses

XFCEでは動作しないようです。どんなオプションがあるのか​​知りたいのですが。
ボフィン

複数のモニターをどのようにセットアップしていますか?大きな仮想画面として、または個別のXディスプレイとして?nvidia twinviewを使用していますか?
キース

TwinViewです。2つのDell 19
インチ

回答:


27

これはしばらく前に投稿されましたが、あなたはすでにあなたの答えを得ていると確信しています。

これらのコマンドを実行する

sudo apt-get install xdotool
sudo apt-get install wmctrl

次に、次のリンクからbashスクリプトをダウンロードします(jc00keのクレジット) https://github.com/jc00ke/move-to-next-monitor

個人的に、私は自分のすべての個人的なスクリプトを保存するディレクトリをルートに持っています。ただし、ダウンロードする場所は実際にあなた次第です。実行できるようにアクセス許可を持つように変更します。たとえば、スクリプトをmove-to-next-monitor.shとして保存し、次を実行します

chmod 755 move-to-next-monitor.sh
  1. 設定マネージャ->キーボード->アプリケーションのショートカット
  2. 追加をクリックします
  3. [開く]をクリックして、スクリプトに送信します
  4. キーボードショートカットを割り当ててください。

これで、ウィンドウを1つの画面から別の画面に切り替えるためのキーボードショートカットができました。3つ以上の画面でどのように機能するのかわかりません。


リンクされたスクリプトには、この問題がありました:github.com/jc00ke/bin/issues/1
thejoshwolfe

1
これまでのところ、Mint 17.3とxfce 4.12、atiチップセットビデオカード、3台のモニターで問題なく動作しています。システム上でthejoshwolfeの最大化問題が表示されない。ヒントをありがとう!
ether_joe

1
@thejoshwolfe最大化の問題を解決するスクリプトのバージョンを追加しました。
jbrock

1
@ether_joe 3台のモニターがある場合に役立つスクリプトのバージョンを追加しました。
jbrock

私はxfceにいますが、これは悪です。ウィンドウは左のモニターから右に移動するだけで、デスクトップは一度奇妙な状態になります。
サヴァB.

10

上記のスクリプトに変更を加えましたが、元はjc00keによって作成されました。
-鉱山は3つのモニター用にセットアップされています。
-ウィンドウが最大化されたかどうかを維持します。
-使用法に応じてウィンドウを左右に移動するために使用さscript-name -lscript-name -rます。
-Chromiumアプリが最小化されたときに非常に小さく、新しいモニターで再び最大化されないという修正を追加しました。
jc00keに対応しました。これはXfceでうまく機能しますが、彼はUnityのスクリプトに問題があると言いました。もちろん、Unityなどの他のデスクトップ環境では、このようなオプションはウィンドウマネージャーに組み込まれているため、このスクリプトは必要ありません。
スクリプトを使用するには、スクリプトを実行可能にchmod +x script-nameし、次の2つのプログラムをインストールしますsudo apt-get install xdotool wmctrl

#!/bin/bash
#
# Move the current window to the next monitor.
#
# Also works only on one X screen (which is the most common case).
#
# Props to
# http://icyrock.com/blog/2012/05/xubuntu-moving-windows-between-monitors/
#
# Unfortunately, both "xdotool getwindowgeometry --shell $window_id" and
# checking "-geometry" of "xwininfo -id $window_id" are not sufficient, as
# the first command does not respect panel/decoration offsets and the second
# will sometimes give a "-0-0" geometry. This is why we resort to "xwininfo".

screen_width=$(xdpyinfo | awk -F" |x" '/dimensions:/ { print $7 }')
screen_height=$(xdpyinfo | awk -F" |x" '/dimensions:/ { print $8 }')
window_id=$(xdotool getactivewindow)

case $1 in
    -l )
        display_width=$((screen_width / 3 * 2)) ;;
    -r )
        display_width=$((screen_width / 3)) ;;
esac

# Remember if it was maximized.
window_state=$(xprop -id $window_id _NET_WM_STATE | awk '{ print $3 }')

# Un-maximize current window so that we can move it
wmctrl -ir $window_id -b remove,maximized_vert,maximized_horz

# Read window position
x=$(xwininfo -id $window_id | awk '/Absolute upper-left X:/ { print $4 }')
y=$(xwininfo -id $window_id | awk '/Absolute upper-left Y:/ { print $4 }')

# Subtract any offsets caused by window decorations and panels
x_offset=$(xwininfo -id $window_id | awk '/Relative upper-left X:/ { print $4 }')
y_offset=$(xwininfo -id $window_id | awk '/Relative upper-left Y:/ { print $4 }')
x=$((x - x_offset))
y=$((y - y_offset))

# Fix Chromium app view issue of small un-maximized size
width=$(xdotool getwindowgeometry $window_id | awk -F" |x" '/Geometry:/ { print $4 }')
if [ "$width" -lt "150" ]; then
  display_width=$((display_width + 150))
fi

# Compute new X position
new_x=$((x + display_width))
# Compute new Y position
new_y=$((y + screen_height))

# If we would move off the right-most monitor, we set it to the left one.
# We also respect the window's width here: moving a window off more than half its width won't happen.
if [ $((new_x + width / 2)) -gt $screen_width ]; then
  new_x=$((new_x - screen_width))
fi

height=$(xdotool getwindowgeometry $window_id | awk -F" |x" '/Geometry:/ { print $5 }')
if [ $((new_y + height / 2)) -gt $screen_height ]; then
  new_y=$((new_y - screen_height))
fi

# Don't move off the left side.
if [ $new_x -lt 0 ]; then
  new_x=0
fi

# Don't move off the bottom
if [ $new_y -lt 0 ]; then
  new_y=0
fi

# Move the window
xdotool windowmove $window_id $new_x $new_y

# Maintain if window was maximized or not
if [ "${window_state}" = "_NET_WM_STATE_MAXIMIZED_HORZ," ]; then
    wmctrl -ir $window_id -b add,maximized_vert,maximized_horz
fi

7

また、モニター間でウィンドウを移動するための独自のpythonスクリプトを作成しました。

https://github.com/calandoa/movescreen

使用法:

movescreen.py <up|down|left|right>

興味深い機能:

  • 4つの方向を扱う
  • 複数のモニターでウィンドウがオーバーラップするような特殊なケースを処理する
  • 独立してフルスクリーンを復元し、水平および垂直状態を最大化
  • pythonで簡単にデバッグまたは新機能を追加できます。

1

「バイナリ」依存関係に依存しない他の選択肢(xdotoolやwmctrlなど):https : //github.com/AlexisBRENON/ewmh_m2m

  • でインストールできますpip(手動でコピーしたり、実行可能にする必要はありません)。
  • 異なるレイアウト(水平、垂直、混合)の複数の画面を処理します
  • 異なるサイズの画面間を移動するときにウィンドウ/画面の比率を維持する
  • 最大化された状態(水平、垂直)を復元する

種類。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.