summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/xfree4.pm
Commit message (Collapse)AuthorAgeFilesLines
* => do as Chris Picton suggestedPascal Rigaux2003-08-011-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Chris Picton said (nearly one year ago :-/) : I have found the need for many low res screen resolutions for such thingas as movie playing, xmame, etc. The method XFdrake uses to enable modes is to enumerate each mode in the XF86Config file. For example (a newly created file): Subsection "Display" Depth 24 Modes "1280x960" "1152x864" "1024x768" "800x600" "640x480" EndSubsection It would be better (at least under XFree 4, which automatically provides resoltions from the monitor, if it is capable), to not limit the modes provided to the user If I use instead, the following: Subsection "Display" Depth 24 Virtual 1280 960 EndSubsection My maximum mode is exactly the same as before, but I have many more low resolution modes.
* introduce ->is_fbdev, and use it to simplify ->set_resolutionPascal Rigaux2003-01-231-5/+9
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-1/+1
|
* please perl_checker:Pascal Rigaux2002-11-061-1/+1
| | | | | | | - local'ize $_ before doing while (<...>) - use "foreach" instead of "for" - remove unneeded parentheses on the right side of infix if/foreach/unless
* Xconfig::xfree3::set_resolution and Xconfig::xfree4::set_resolution must not ↵Pascal Rigaux2002-08-281-6/+6
| | | | modify parameter $Screen before calling Xconfig::xfreeX::set_resolution (otherwise the resolution setting is done on only one device which is bad for multi-head)
* fix "screen1 RightOf screen2", it must be "screen2 RightOf screen1"Pascal Rigaux2002-08-231-1/+1
|
* make wacom config workPascal Rigaux2002-08-061-5/+6
|
* still have HorizSync and VertRefresh for Plug'n Play monitorsPascal Rigaux2002-08-051-12/+0
| | | | | (XFree4 still need some help)
* 14 new modules, will it be enough?? :)Pascal Rigaux2002-07-281-5/+90
|
* new XFree handling libraryPascal Rigaux2002-07-241-0/+84
- only keyboard and mice functions are done, but adding the others is quite easy - so for now only used in mousedrake - but keyboarddrake and (of course) XFdrake will come