diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-01 20:48:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-01 20:48:32 +0000 |
commit | 0b3d57562f0ef60c905e16559f46fe64174a6839 (patch) | |
tree | f0329fcb5a739434572dc577a1bd4a3a75b0b558 /perl-install/Xconfig/parse.pm | |
parent | 77b45e03e0c9a231bcceb551b199162464c25f9f (diff) | |
download | drakx-0b3d57562f0ef60c905e16559f46fe64174a6839.tar drakx-0b3d57562f0ef60c905e16559f46fe64174a6839.tar.gz drakx-0b3d57562f0ef60c905e16559f46fe64174a6839.tar.bz2 drakx-0b3d57562f0ef60c905e16559f46fe64174a6839.tar.xz drakx-0b3d57562f0ef60c905e16559f46fe64174a6839.zip |
=> do as Chris Picton suggested
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.
Diffstat (limited to 'perl-install/Xconfig/parse.pm')
-rw-r--r-- | perl-install/Xconfig/parse.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/parse.pm b/perl-install/Xconfig/parse.pm index ea1054835..6de7d8959 100644 --- a/perl-install/Xconfig/parse.pm +++ b/perl-install/Xconfig/parse.pm @@ -133,7 +133,7 @@ my %kind_names = ( Keyboard => [ qw(Protocol Driver XkbModel XkbLayout XkbDisable) ], Monitor => [ qw(Identifier VendorName ModelName HorizSync VertRefresh) ], Device => [ qw(Identifier VendorName BoardName Chipset Driver VideoRam Screen BusID DPMS power_saver) ], - Display => [ qw(Depth Modes) ], # Subsection in Device + Display => [ qw(Depth Modes Virtual) ], # Subsection in Device Screen => [ qw(Identifier Driver Device Monitor DefaultColorDepth) ], InputDevice => [ qw(Identifier Driver Protocol Device Type Mode XkbModel XkbLayout XkbDisable Emulate3Buttons Emulate3Timeout) ], WacomCursor => [ qw(Port) ], #-\ |