web-dev-qa-db-ja.com

Xubuntuメニューバーが外付けモニターのプラグを抜いた後に消えた

この問題に似たものを検索しましたが、見つかりませんでした。重複している場合はお詫び申し上げます。

私はUbuntu 13.10の上にXubuntuをインストールしようとしています。外付けモニターを接続してデスクトップを拡張しようとしています。それは機能し、そこに文句はありません。これが結果です(左:latop-右:24インチVGA外部モニター):

http://i.stack.imgur.com/kXcAs.png

ただし、ラップトップ画面に戻ると、次のスクリーンショットに示すように、メニューバーだけが消えます。

http://i.stack.imgur.com/d7ysw.png

外付けモニターを再度プラグイン/アクティブ化すると、前に示したように正常に戻ります。

更新:

要求に応じたxrandrの出力(外部モニターなし)

Screen 0: minimum 320 x 200, current 3286 x 1080, maximum 32767 x 32767
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 277mm x 156mm
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 disconnected 1920x1080+1366+0 (normal left inverted right x axis y axis) 0mm x 0mm
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
  1920x1080 (0x4d)  148.5MHz
        h: width  1920 start 2008 end 2052 total 2200 skew    0 clock   67.5KHz
        v: height 1080 start 1084 end 1089 total 1125           clock   60.0Hz

接続されている外付けモニター:

Screen 0: minimum 320 x 200, current 3286 x 1080, maximum 32767 x 32767
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 277mm x 156mm
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 connected 1920x1080+1366+0 (normal left inverted right x axis y axis) 531mm x 299mm
   1920x1080      60.0*+
   1600x1200      60.0  
   1680x1050      60.0  
   1280x1024      75.0     60.0  
   1440x900       59.9  
   1280x960       60.0  
   1152x864       75.0  
   1024x768       75.1     70.1     60.0  
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   640x480        75.0     72.8     66.7     60.0  
   720x400        70.1  
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
2
davidfm

問題は、モニターのプラグを抜いたときにデスクトップの設定が更新されず、システムに2台目のモニターが接続されているとシステムが認識していることです。これはおそらくudevルールを使用して修正できますが、この種のことで複雑になる可能性があります。デスクトップを更新する小さなスクリプトを作成し、それをショートカットキーにマップして、簡単に実行してこの種の問題を修正できるようにしました。 xrandrの出力に基づいて、セットアップに一致するように変更しました

#!/usr/bin/env bash


## If the VGA1 screen is currenlty connected  
if ( xrandr | grep VGA1 | grep -qw connected )
then
    ## print a pretty message
    notify-send "Extending desktop to screen VGA1"

    ## extend the desktop to the external screen. If you want your panel
    ## to appear on the right hand screen move the '--primary' flag to
    ## the VGA1: --output VGA1 --primary ...
    xrandr --output LVDS1 --auto  --primary --output VGA1 --auto --right-of LVDS1
else

    ## If the external screen is not connected, refresh the desktop and
    ## make everything appear on the laptop's
    xrandr --output LVDS1 --auto --primary --output VGA1 --off

fi

このスクリプトを~/screen_switch.shとして保存し、実行可能にして(chmod +x ~/screen_switch.sh)、システム設定を使用して、スクリプトを実行するキーボードショートカットを設定します。これで、ショートカットを使用して問題を解決できます。

0
terdon