diff options
Diffstat (limited to '99-playground/xorg.conf')
-rw-r--r-- | 99-playground/xorg.conf | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/99-playground/xorg.conf b/99-playground/xorg.conf new file mode 100644 index 0000000000..60884f509e --- /dev/null +++ b/99-playground/xorg.conf @@ -0,0 +1,54 @@ +################# +################# +################# This file is unused in the Plase desktop +################# test playground. +################# +################# + + + +# ********************************************************************** +# Refer to the xorg.conf man page for details about the format of +# this file. +# ********************************************************************** + +Section "ServerFlags" + #DontZoom # disable <Ctrl><Alt><KP_+>/<KP_-> (resolution switching) + #Option "DontZap" "False" # disable <Ctrl><Alt><BS> (server abort) + AllowMouseOpenFail # allows the server to start up even if the mouse does not work +EndSection + +Section "Module" + #Load "v4l" # Video for Linux +EndSection + +Section "Monitor" + Identifier "monitor1" + VendorName "Plug'n Play" + + # TV fullscreen mode or DVD fullscreen output. + # 768x576 @ 79 Hz, 50 kHz hsync + ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630 + + # 768x576 @ 100 Hz, 61.6 kHz hsync + ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616 +EndSection + +Section "Device" + Identifier "device1" + VendorName "Intel Corporation" + BoardName "Intel 810 and later" + #Driver "intel" + Option "DPMS" +EndSection + +Section "Screen" + Identifier "screen1" + Device "device1" + Monitor "monitor1" +EndSection + +Section "ServerLayout" + Identifier "layout1" + Screen "screen1" +EndSection |