
デュアルモニター設定があります。xfreerdp
両方のモニタでフルスクリーンを起動できません。
$ xfreerdp /monitor-list
* [0] 1920x1080 +0+0
[1] 1920x1080 +1920+0
xfreerdp /multimon
- ちょうどウィンドウ内で実行
xfreerdp /monitors:0,1 /multimon
- ちょうどウィンドウ内で実行
xfreerdp /monitors:1,2 /multimon
- モニタ0でフルスクリーンスタート
xfreerdp /monitors:0 /multimon
- モニタ0でフルスクリーンスタート
xfreerdp /monitors:1 /multimon
- モニタ0でフルスクリーンスタート
FreeRDP バージョン 2.1.0
私はアーチLinuxを使用しています
私はbspwm
ウィンドウマネージャー、picom
シンセサイザーとして機能します。
$ xrandr
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 32767 x 32767
HDMI-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 521mm x 293mm
1920x1080 60.00*+ 59.94 50.00
1680x1050 59.95
1440x900 59.89
1280x1024 75.02 60.02
1280x960 60.00
1280x720 60.00 59.94 50.00
1024x768 75.03 70.07 60.00
800x600 75.00 72.19 60.32 56.25
720x576 50.00
720x480 59.94
640x480 75.00 72.81 59.94 59.93
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
HDMI-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis) 521mm x 293mm
1920x1080 60.00*+ 59.94 50.00
1680x1050 59.95
1440x900 59.89
1280x1024 75.02 60.02
1280x960 60.00
1280x720 60.00 59.94 50.00
1024x768 75.03 70.07 60.00
800x600 75.00 72.19 60.32 56.25
720x576 50.00
720x480 59.94
640x480 75.00 72.81 59.94 59.93
USB-C-0 disconnected (normal left inverted right x axis y axis)
答え1
Arco LinuxおよびFreeRDPバージョン2.3.2を使用してi3wmでこの問題を解決することができました。タイリングウィンドウマネージャで、1つのウィンドウで両方の画面を上書きしたいようです。
1. グローバル全画面を切り替える bspwm コマンドを作成します。
i3では、これは設定ファイルに次の行を追加することを意味します。
bindsym $<key combination> fullscreen toggle global (I used $mod+Shift+f).
bspwmにも似たようなものがあることを願っていますが、私はそれについてあまり慣れていません。これにキーボードショートカットを作成したいかもしれないことを理解しています。
2. グローバル全画面を切り替える WM コマンドを使用できるように、-grab-keyboard オプションを使用して FreeRDP を起動します。
xfreerdp -grab-keyboard /multimon /monitors:0,1 /f ...