12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #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). xorg 7.4/5, need explicit disable to disable...
- Disable "glx" #LOADGLX
- # This loads dri module (if present). 7.4 loads it by default, have to disable...
- # Load "dri" #LOADDRI
- # Disable "dri"
- EndSection
- # **********************************************************************
- # Files section. This allows default font 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)
- FontPath "/usr/share/X11/fonts/misc/"
- FontPath "/usr/share/X11/fonts/Type1/"
- FontPath "/usr/share/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"
- # With this, Xorg won't talk to HAL to add evdev devices and you'll be back
- # with the old Xorg behavior (pre-7.4)...
- Option "AutoAddDevices" "false"
- # For no-Hal, kirk also suggests this...
- # Option "AllowMouseOpenFail" "true"
- # Xorg 7.4, Ubuntu Jaunty, CTRL-ALT-BACKSPACE is disabled by default...
- Option "DontZap" "false"
- EndSection
- #everything past here is auto-generated by Puppy's Xorg Wizard...
|