You are not logged in.
Pages: 1
I have a widescreen LCD with a native resolution of 1920x1200 on a Radeon x800 with ATI's drivers. Whenever I try to play games or anything at a lower resolution, they get stretched (and thus, distorted) to fit the whole screen. How can I get them to run w/ black bars on the sides instead? I had this working before I switched to Arch, but unfortunately forgot to save my Xorg.conf.
Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
Section "Module"
Load "GLcore"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
# Load "int10"
Load "type1"
Load "vbe"
Load "dbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection
Section "Device"
Identifier "ATI Technologies, Inc. Radeon X800 (R430 UO)"
Driver "fglrx"
BusID "PCI:1:0:0"
Option "RenderAccel" "true"
Option "no_accel" "no"
Option "no_dri" "no"
Option "VideoOverlay" "on"
Option "UseInternalAGPGART" "yes"
Option "KernelModuleParm" "agplock=0"
Option "NoStretch"
Option "LcdCenter"
VideoRam 262144
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
HorizSync 30-130
VertRefresh 50-160
EndSection
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon X800 (R430 UO)"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1200"
EndSubSection
SubSection "Display"
Depth 32
Modes "1920x1200"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "dri"
Mode 0666
Group "users"
EndSection
I thought "NoStretch" would do it, but it didn't. Also added the resolutions to my modes lists but that didn't change anything.
Offline
Pages: 1