1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #Special base config file used in Puppy Linux.
- # **********************************************************************
- # Module section -- this section is used to specify
- # which dynamically loadable modules to load.
- # **********************************************************************
- #
- Section "Module"
- # This loads the DBE extension module.
- Load "dbe" # Double buffer extension
- # This loads the miscellaneous extensions module, and disables
- # initialisation of the XFree86-DGA extension within that module.
- SubSection "extmod"
- Option "omit xfree86-dga" # don't initialise the DGA extension
- EndSubSection
- # This loads the font modules
- Load "type1"
- Load "freetype"
- # This loads xtrap extension, used by xrandr
- Load "xtrap"
- # This loads the GLX module (if present)
- Load "glx"
- # This loads dri module (if present)
- Load "dri"
- EndSection
- # **********************************************************************
- # Files section. This allows default font and rgb paths to be set
- # **********************************************************************
- Section "Files"
- # The location of the RGB database. Note, this is the name of the
- # file minus the extension (like ".txt" or ".db"). There is normally
- # no need to change the default.
- RgbPath "/usr/X11R7/lib/X11/rgb"
- # 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)
- FontPath "/usr/X11R7/lib/X11/fonts/misc/"
- FontPath "/usr/X11R7/lib/X11/fonts/Type1/"
- FontPath "/usr/X11R7/lib/X11/fonts/TTF/"
- EndSection
- # **********************************************************************
- # Server flags section.
- # **********************************************************************
- Section "ServerFlags"
- # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
- # (where n is 1 through 12). This allows clients to receive these key
- # events.
- # Option "DontVTSwitch"
- # Enables mode switching with xrandr
- # There is a report that this can cause Xorg not to work on some
- # video hardware, so default is commented-out...
- # but i want to use it in xorgwizard so leave on...
- Option "RandR" "on"
- EndSection
- #everything past here is auto-generated by Puppy's Xorg Wizard...
|