ログイン画面の解像度を変えてみる - ubuntu日記

ubuntu 9.04のログイン画面の解像度を1280x800に変更してみた。


現在の設定。

Section "Monitor"
        Identifier     "Configured Monitor"
EndSection
Section "Screen"
        Identifier      "Default Screen"
        Monitor       "Configured Monitor"
        Device          "Configured Video Device"
        SubSection "Display"
                Virtual 1280 1024
        EndSubSection
EndSection




Section "Device"
        Identifier      "Configured Video Device"
EndSection

変更後の設定。

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection


Section "Screen"
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "Configured Video Device"
        SubSection "Display"
                Virtual 1280 800
        EndSubSection
EndSection


Section "Device"
        Identifier      "Configured Video Device"
EndSection

編集後、ログアウトすると既に設定が反映されており、OSやXなどの再起動は不要だった。

コメント