# # Copyright (c) 1994-1998 by The XFree86 Project, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # Except as contained in this notice, the name of the XFree86 Project shall # not be used in advertising or otherwise to promote the sale, use or other # dealings in this Software without prior written authorization from the # XFree86 Project. # # $XConsortium: XF86Conf.cpp /main/22 1996/10/23 11:43:51 kaleb $ # ********************************************************************** # This is a sample configuration file only, intended to illustrate # what a config file might look like. Refer to the xorg.conf(5) # man page for details about the format of this file. # ********************************************************************** # The ordering of sections is not important in XFree86 4.0 and later, # nor in any Xorg release. # ********************************************************************** # Files section. This allows default font and module paths to be set # ********************************************************************** Section "Files" # Multiple FontPath entries are allowed (which are concatenated together), # as well as specifying multiple comma-separated entries in one FontPath # command (or a combination of both methods). # The default path is shown here. # FontPath "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/OTF,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/" # For XFS, uncomment this and comment the others # FontPath "unix/:7100" FontPath "/usr/share/fonts/ttf-bitstream-vera/,/usr/share/fonts/unifont/,/usr/share/fonts/xawtv/,/usr/share/fonts/Speedo/,/usr/share/fonts/OTF/,/usr/share/fonts/stix-fonts/,/usr/share/fonts/lyx/,/usr/share/fonts/libertine-ttf/,/usr/share/fonts/cantarell/,/usr/share/fonts/droid/,/usr/share/fonts/liberation-fonts/,/usr/share/fonts/dejavu/,/usr/share/fonts/corefonts/,/usr/share/fonts/urw-fonts/,/usr/share/fonts/urwvn-fonts/,/usr/share/fonts/misc/,/usr/share/fonts/75dpi/:unscaled,/usr/share/fonts/100dpi/:unscaled,/usr/share/fonts/Type1/,/usr/share/fonts/TTF/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/" # ModulePath can be used to set a search path for the X server modules. # The default path is shown here. # ModulePath "/usr/lib/xorg/modules" EndSection # ********************************************************************** # Module section -- this is an optional section which is used to specify # which run-time loadable modules to load when the X server starts up. # ********************************************************************** Section "Module" # Load "bitmap" # Load "pcidata" # This loads the DBE extension module. Load "dbe" # This loads the miscellaneous extensions module, and disables # initialisation of the XFree86-DGA extension within that module. SubSection "extmod" Option "omit xfree86-dga" EndSubSection # This loads the Type1 and FreeType font modules # Load "type1" # Load "freetype" Load "dri" # Load "drm" Load "glx" Load "exa" Load "fb" Load "dri2" Load "ramdac" # Load "r600g" Load "fbdevhw" Load "modesetting" Load "radeon" # Load "GLcore" # Load "radeon" # Load "mouse" # Load "kbd" # Load "vgahw" # Load "int10" # Load "i2c" # Load "ddc" # Load "vbe" EndSection Section "DRI" Group "video" Mode 0660 EndSection # ********************************************************************** # Server flags section. This contains various server-wide Options. # ********************************************************************** Section "ServerFlags" # Uncomment this to cause a core dump at the spot where a signal is # received. This may leave the console in an unusable state, but may # provide a better stack trace in the core dump to aid in debugging # Option "NoTrapSignals" # Uncomment this to disable the VT switch sequence # (where n is 1 through 12). This allows clients to receive these key # events. # Option "DontVTSwitch" # Uncomment this to disable the server abort sequence # This allows clients to receive this key event. # Option "DontZap" "false" # Uncomment this to disable the / mode switching # sequences. This allows clients to receive these key events. # Option "DontZoom" # Uncomment this to disable tuning with the xvidtune client. With # it the client can still run and fetch card and monitor attributes, # but it will not be allowed to change them. If it tries it will # receive a protocol error. # Option "DisableVidModeExtension" # Uncomment this to enable the use of a non-local xvidtune client. # Option "AllowNonLocalXvidtune" # Set the basic blanking screen saver timeout. Option "BlankTime" "10" # 10 minutes # Set the DPMS timeouts. These are set here because they are global # rather than screen-specific. These settings alone don't enable DPMS. # It is enabled per-screen (or per-monitor), and even then only when # the driver supports it. Option "StandbyTime" "15" # 10 minutes Option "SuspendTime" "20" # 10 minutes Option "OffTime" "30" # 10 minutes EndSection #Section "Extensions" # Option "Composite" "Enable" #EndSection # ********************************************************************** # Input devices # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Elitebook_Keyboard" Driver "keyboard" # For most OSs the protocol can be omitted (it defaults to "Standard"). # When using XQUEUE (only for SVR3 and SVR4, but not Solaris), comment # out the above line, and uncomment the following line. Option "Protocol" "standard" # Set the keyboard auto repeat parameters. Not all platforms implement # this. Option "AutoRepeat" "500 30" # Specifiy which keyboard LEDs can be user-controlled (eg, with xset(1)). # Option "Xleds" "1 2 3" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a European # keyboard, you will probably want to use one of: # # Option "XkbModel" "pc102" # Option "XkbModel" "pc105" # # If you have a Microsoft Natural keyboard, you can use: # # Option "XkbModel" "microsoft" # # If you have a US "windows" keyboard you will want: # # Option "XkbModel" "pc104" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # # Option "XkbLayout" "de" # # or: # # Option "XkbLayout" "de" # Option "XkbVariant" "nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # # Option "XkbOptions" "ctrl:swapcaps" # These are the default XKB settings for xorg # Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "hu,us" Option "XkbVariant" "101_qwerty_dot_dead,altgr-intl" Option "XkbOptions" "grp:lalt_lshift_toggle" EndSection # ********************************************************************** # Core Pointer's InputDevice section # ********************************************************************** Section "InputDevice" # Identifier and driver Identifier "Elitebook_TrackPoint" Driver "mouse" # The mouse protocol and device. The device is normally set to /dev/mouse, # which is usually a symbolic link to the real device. Option "Protocol" "IMPS/2" Option "Device" "/dev/input/mice" # On platforms where PnP mouse detection is supported the following # protocol setting can be used when using a newer PnP mouse: # Option "Protocol" "Auto" # When using mouse connected to a PS/2 port (aka "MousePort"), set the # the protocol as follows. On some platforms some other settings may # be available. # Option "Protocol" "PS/2" # When using XQUEUE (only for SVR3 and SVR4, but not Solaris), use # the following instead of any of the lines above. The Device line # is not required in this case. # Option "Protocol" "Xqueue" # Baudrate and SampleRate are only for some older Logitech mice. In # almost every case these lines should be omitted. # Option "BaudRate" "9600" # Option "SampleRate" "150" # Emulate3Buttons is an option for 2-button mice # Emulate3Timeout is the timeout in milliseconds (default is 50ms) Option "Emulate3Buttons" "off" # Option "Emulate3Timeout" "50" # ChordMiddle is an option for some 3-button Logitech mice, or any # 3-button mouse where the middle button generates left+right button # events. # Option "ChordMiddle" # Option "Buttons" "3" Option "Buttons" "5" Option "ZAxisMapping" "4 5" EndSection # Some examples of extended input devices # Section "InputDevice" # Identifier "spaceball" # Driver "magellan" # Option "Device" "/dev/cua0" # EndSection # # Section "InputDevice" # Identifier "touchscreen1" # Driver "elo2300" # Option "Device" "/dev/ttyS0" # Option "MinX" "231" # Option "MaxX" "3868" # Option "MinY" "3858" # Option "MaxY" "272" # Option "ScreenNumber" "0" # Option "ReportingMode" "Scaled" # Option "ButtonThreshold" "17" # Option "ButtonNumber" "1" # Option "SendCoreEvents" # EndSection # Section "InputDevice" # Identifier "ACECAD Flair II GT-504" # Driver "acecad" # Option "Device" "auto-dev" # EndSection # ********************************************************************** # Monitor section # ********************************************************************** # Any number of monitor sections may be present Section "Monitor" # The identifier line must be present. Identifier "Elitebook_DreamColor" # HorizSync is in kHz unless units are specified. # HorizSync may be a comma separated list of discrete values, or a # comma separated list of ranges of values. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S # USER MANUAL FOR THE CORRECT NUMBERS. # HorizSync 31.5 # typical for a single frequency fixed-sync monitor # HorizSync 30-60 # multisync # HorizSync 31.5, 35.2 # multiple fixed sync frequencies # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies # VertRefresh is in Hz unless units are specified. # VertRefresh may be a comma separated list of discrete values, or a # comma separated list of ranges of values. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S # USER MANUAL FOR THE CORRECT NUMBERS. # VertRefresh 60 # typical for a single frequency fixed-sync monitor # VertRefresh 50-75 # multisync # VertRefresh 60, 65 # multiple fixed sync frequencies # VertRefresh 40-50, 80-100 # multiple ranges of sync frequencies # Modes can be specified in two formats. A compact one-line format, or # a multi-line format. # 1920x1080 @ 50.00 Hz (GTF) hsync: 55.60 kHz; pclk: 141.45 MHz # Modeline "1920x1080" 141.45 1920 2032 2232 2544 1080 1081 1084 1112 -HSync +Vsync # 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz # Modeline "1920x1080" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync +Vsync # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz # ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz # ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync # 800x600 @ 60Hz (VESA) hsync: 37.9kHz # ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz # ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync # Default modes distilled from # "VESA and Industry Standards and Guide for Computer Display Monitor # Timing", version 1.0, revision 0.8, adopted September 17, 1998. # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $ # 640x350 @ 85Hz (VESA) hsync: 37.9kHz # ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync # 640x400 @ 85Hz (VESA) hsync: 37.9kHz # ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync # 720x400 @ 85Hz (VESA) hsync: 37.9kHz # ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz # ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync # 640x480 @ 72Hz (VESA) hsync: 37.9kHz # ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync # 640x480 @ 75Hz (VESA) hsync: 37.5kHz # ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync # 640x480 @ 85Hz (VESA) hsync: 43.3kHz # ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync # 800x600 @ 56Hz (VESA) hsync: 35.2kHz # ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync # 800x600 @ 60Hz (VESA) hsync: 37.9kHz # ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync # 800x600 @ 72Hz (VESA) hsync: 48.1kHz # ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync # 800x600 @ 75Hz (VESA) hsync: 46.9kHz # ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync # 800x600 @ 85Hz (VESA) hsync: 53.7kHz # ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz # ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz # ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz # ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz # ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz # ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz # ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz # ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz # ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz # ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz # ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz # ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz # ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz # ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz # ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz # ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz # ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz # ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz # ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz # ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz # ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz # ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz # ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync # Additional modelines # ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync # ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync # Extended modelines with GTF timings # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz # ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz # ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz # ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz # ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz # ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz # ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz # ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz # ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz # ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz # ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz # ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz # ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz # ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz # ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz # ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz # ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz # ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz # ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz # ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz # ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz # ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync # Supported detailed timing: clock: 138.7 MHz Image Size: 350 x 190 mm (66.7 kHz eP) Modeline "1920x1080" 138.70 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync # Supported detailed timing: clock: 111.0 MHz Image Size: 350 x 190 mm (53.3 kHz e) Modeline "1920x1080" 110.96 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync # Supported detailed timing: clock: 115.6 MHz Image Size: 350 x 190 mm (55.6 kHz e) # Modeline "1920x1080" 115.58 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync # Printing probed modes for output eDP: x50.0 (55.6 kHz e) Modeline "1920x1080" 115.58 1920 1968 2000 2080 1080 1083 1088 1111 -hsync -vsync # Printing probed modes for output eDP: x59.9 (55.9 kHz) Modeline "1440x900" 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync # Printing probed modes for output eDP: x59.9 (59.7 kHz) Modeline "1280x960" 101.25 1280 1360 1488 1696 960 963 967 996 -hsync +vsync # Printing probed modes for output eDP: x59.9 (53.1 kHz) Modeline "1280x854" 89.25 1280 1352 1480 1680 854 857 867 887 -hsync +vsync # Printing probed modes for output eDP: x59.8 (49.7 kHz) Modeline "1280x800" 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync # Printing probed modes for output eDP: x59.9 (44.8 kHz) Modeline "1280x720" 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync # Printing probed modes for output eDP: x59.8 (47.7 kHz) Modeline "1152x768" 71.75 1152 1216 1328 1504 768 771 781 798 -hsync +vsync # Printing probed modes for output eDP: x60.0 (48.4 kHz) Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync # Printing probed modes for output eDP: x59.9 (47.8 kHz) Modeline "1024x768" 63.50 1024 1072 1176 1328 768 771 775 798 -hsync +vsync # Printing probed modes for output eDP: x60.3 (37.9 kHz) Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync # Printing probed modes for output eDP: x59.9 (37.4 kHz) Modeline "800x600" 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync # Printing probed modes for output eDP: x59.7 (29.8 kHz) Modeline "848x480" 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync # Printing probed modes for output eDP: x59.7 (29.9 kHz) Modeline "720x480" 26.75 720 744 808 896 480 483 493 500 -hsync +vsync # If a monitor has DPMS support, that can be indicated here. This will # enable DPMS when the monitor is used with drivers that support it. Option "dpms" # If a monitor requires that the sync signals be superimposed on the # green signal, the following option will enable this when used with # drivers that support it. Only a relatively small range of hardware # (and drivers) actually support this. # Option "sync on green" # Option "PreferredMode" "1920x1080" Option "Primary" "true" # Option "RightOf" "Dell_U2410" EndSection Section "Monitor" Identifier "Dell_U2410" # Supported detailed timing: clock: 154.0 MHz Image Size: 518 x 324 mm Modeline "1920x1200" 154.0 1920 1968 2000 2080 1200 1203 1209 1235 -hsync -vsync # Supported detailed timing: clock: 148.5 MHz Image Size: 518 x 324 mm Modeline "1920x1080" 148.5 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync # Supported detailed timing: clock: 74.2 MHz Image Size: 518 x 324 mm # Modeline "1920x540" 74.2 1920 2008 2052 2200 540 542 547 562 +hsync +vsync # Supported detailed timing: clock: 74.2 MHz Image Size: 518 x 324 mm # Modeline "1280x720" 74.2 1280 1390 1430 1650 720 725 730 750 +hsync +vsync # Supported detailed timing: clock: 27.0 MHz Image Size: 518 x 324 mm # Modeline "720x480" 27.0 720 736 798 858 480 489 495 525 -hsync -vsync # Printing probed modes for output DisplayPort-0: x60.0 (67.5 kHz e) # Modeline "1920x1080" 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync # Printing probed modes for output DisplayPort-0: x50.0 (56.2 kHz e) Modeline "1920x1080" 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync # Printing probed modes for output DisplayPort-0: x59.9 (67.4 kHz e) Modeline "1920x1080" 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync # Printing probed modes for output DisplayPort-0: x60.0 (33.8 kHz e) # Modeline "1920x1080i" 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync # Printing probed modes for output DisplayPort-0: x50.0 (28.1 kHz e) # Modeline "1920x1080i" 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync # Printing probed modes for output DisplayPort-0: x24.0 (27.0 kHz e) Modeline "1920x1080" 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync # Printing probed modes for output DisplayPort-0: x59.9 (33.7 kHz e) # Modeline "1920x1080i" 74.18 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync # Printing probed modes for output DisplayPort-0: x24.0 (27.0 kHz e) Modeline "1920x1080" 74.18 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync # Printing probed modes for output DisplayPort-0: x75.0 (80.0 kHz e) Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync # Printing probed modes for output DisplayPort-0: x60.0 (64.0 kHz e) Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync # Printing probed modes for output DisplayPort-0: x75.0 (67.5 kHz e) Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync # Printing probed modes for output DisplayPort-0: x60.0 (45.0 kHz e) Modeline "1280x720" 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync # Printing probed modes for output DisplayPort-0: x50.0 (37.5 kHz e) Modeline "1280x720" 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync # Printing probed modes for output DisplayPort-0: x59.9 (45.0 kHz e) Modeline "1280x720" 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync # Printing probed modes for output DisplayPort-0: x75.1 (60.1 kHz e) Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync # Printing probed modes for output DisplayPort-0: x48.4 (67.5 kHz e) Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync # Printing probed modes for output DisplayPort-0: x75.0 (46.9 kHz e) Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync # Printing probed modes for output DisplayPort-0: x60.3 (37.9 kHz e) Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync # Printing probed modes for output DisplayPort-0: x50.0 (31.2 kHz e) Modeline "720x576" 27.00 720 732 796 864 576 581 586 625 -hsync -vsync # Printing probed modes for output DisplayPort-0: x50.0 (15.6 kHz e) # Modeline "720x576i" 13.50 720 732 795 864 576 580 586 625 interlace -hsync -vsync # Printing probed modes for output DisplayPort-0: x60.0 (31.5 kHz e) Modeline "720x480" 27.03 720 736 798 858 480 489 495 525 -hsync -vsync # Printing probed modes for output DisplayPort-0: x59.9 (31.5 kHz e) Modeline "720x480" 27.00 720 736 798 858 480 489 495 525 -hsync -vsync # Printing probed modes for output DisplayPort-0: x60.0 (15.7 kHz e) # Modeline "720x480i" 13.51 720 739 801 858 480 488 494 525 interlace -hsync -vsync # Printing probed modes for output DisplayPort-0: x59.9 (15.7 kHz e) # Modeline "720x480i" 13.50 720 739 801 858 480 488 494 525 interlace -hsync -vsync # Printing probed modes for output DisplayPort-0: x75.0 (37.5 kHz e) Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync # Printing probed modes for output DisplayPort-0: x60.0 (31.5 kHz e) Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync # Printing probed modes for output DisplayPort-0: x59.9 (31.5 kHz e) Modeline "640x480" 25.18 640 656 752 800 480 490 492 525 -hsync -vsync # Printing probed modes for output DisplayPort-0: x70.1 (31.5 kHz e) Modeline "720x400" 28.32 720 738 846 900 400 412 414 449 -hsync +vsync # Option "PreferredMode" "1920x1200" # Option "Primary" "false" Option "LeftOf" "Elitebook_DreamColor" EndSection # ********************************************************************** # Graphics device section # ********************************************************************** # Any number of graphics device sections may be present Section "Device" # The Identifier must be present. Identifier "ATI_FirePro_M5950" # The Driver line must be present. When using run-time loadable driver # modules, this line instructs the server to load the specified driver # module. Even when not using loadable driver modules, this line # indicates which driver should interpret the information in this section. Driver "radeon" # acceleration # Option "AGPMode" "4" Option "EnablePageFlip" "on" Option "RenderAccel" "on" # # enable (partial) PowerPlay features # Option "DynamicClocks" "on" # Option "ClockGating" "on" # Option "ForceLowPowerMode" "on" # Option "DynamicPM" "on" # # use bios hot keys on thinkpad (aka fn+f7) # Option "BIOSHotkeys" "on" # additional options Option "ColorTiling" "on" Option "ColorTiling2D" "true" Option "AccelMethod" "EXA" # # xv overlay layout options # Option "OverlayOnCRTC1" "on" # Option "OverlayOnCRTC2" "on" # To switch on the fly, use these commands: # xvattr -a XV_SWITCHCRT -v 0 (LCD) # xvattr -a XV_SWITCHCRT -v 1 (CRT) # Option "MergedFB" "on" # Option "CRT2Position" "clone" # Option "CRT2Hsync" "50-75" # Option "CRT2VRefresh" "50-82" # Option "MonitorLayout" "LVDS, CRT" # Option "MetaModes" "1920x1080-1024x768 1920x1080-800x600 1920x1080-1280x1024 1024x768-1024x768 800x600-800x600 1280x1024x1280x1024" ## Option "CRT2Position" "RightOf" ## Option "MergedNonRectangular" "true" # The chipset line is optional in most cases. It can be used to override # the driver's chipset detection, and should not normally be specified. # Chipset "generic" # Various other lines can be specified to override the driver's automatic # detection code. In most cases they are not needed. # VideoRam 256 # Clocks 25.2 28.3 # The BusID line is used to specify which of possibly multiple devices # this section is intended for. When this line isn't present, a device # section can only match up with the primary video device. For PCI # devices a line like the following could be used. This line should not # normally be included unless there is more than one video device # intalled. # BusID "PCI:0:10:0" # Various option lines can be added here as required. Some options # are more appropriate in Screen sections, Display subsections or even # Monitor sections. # Option "hw cursor" "off" # Option "DRI" "true" # Option "XAANoOffscreenPixmaps" "true" Option "Monitor-eDP" "Elitebook_DreamColor" Option "Monitor-DisplayPort-0" "Dell_U2410" EndSection # ********************************************************************** # Screen sections. # ********************************************************************** # Any number of screen sections may be present. Each describes # the configuration of a single screen. A single specific screen section # may be specified from the X server command line with the "-screen" # option. Section "Screen" # The Identifier, Device and Monitor lines must be present Identifier "Elitebook_eDP" Device "ATI_FirePro_M5950" Monitor "Elitebook_DreamColor" # The favoured Depth and/or Bpp may be specified here DefaultDepth 24 SubSection "Display" Depth 24 Modes "1920x1080 1920x1200 1024x768 1280x1024 800x600" # ViewPort 0 0 # Virtual 1024 768 # Virtual 1920 1080 VIrtual 3840 2400 EndSubsection EndSection Section "Screen" Identifier "Elitebook_DisplayPort-0" Device "ATI_FirePro_M5950" Monitor "Elitebook_DELL_U2410" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1920x1200 1920x1080 1024x768 1280x1024 800x600" Virtual 3840 2400 EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** # Any number of ServerLayout sections may be present. Each describes # the way multiple screens are organised. A specific ServerLayout # section may be specified from the X server command line with the # "-layout" option. In the absence of this, the first section is used. # When now ServerLayout section is present, the first Screen section # is used alone. Section "ServerLayout" # The Identifier line must be present Identifier "Elitebook_8560w" # Each Screen line specifies a Screen section name, and optionally # the relative position of other screens. The four names after # primary screen name are the screens to the top, bottom, left and right # of the primary screen. In this example, screen 2 is located to the # right of screen 1. # Screen "Screen MGA 1" "" "" "" "Screen MGA 2" # Screen "Screen MGA 2" "" "" "Screen MGA 1" "" Screen "Elitebook_eDP" 0 0 Screen "Elitebook_DisplayPort-0" LeftOf "Elitebook_eDP" # Each InputDevice line specifies an InputDevice section name and # optionally some options to specify the way the device is to be # used. Those options include "CorePointer", "CoreKeyboard" and # "SendCoreEvents". In this example, "Mouse1" is the core pointer, # and "Mouse2" is an extended input device that also generates core # pointer events (i.e., both mice will move the standard pointer). InputDevice "Elitebook_TrackPoint" "CorePointer" InputDevice "Elitebook_Keyboard" "CoreKeyboard" # InputDevice "ACECAD Flair II GT-504" "SendCoreEvents" Option "AIGLX" "true" EndSection