I assume that you have installed Incognito to the hard drive. If you are running from CD, then it does not make much sense to be trying to configure something like this.
Both options I mentioned require editing the file: "/etc/X11/xorg.conf" This can be done with any text editor, but you must be running as root.
Here is an excerpt from a typical file (only relevant stuff shown):
Code:
Section "Monitor"
Identifier "ATIMonitor"
VendorName "unknown"
ModelName "unknown"
Option "DPMS" "true"
HorizSync 30-75
VertRefresh 55-70
<---Add modeline here
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
BoardName "unknown"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultColorDepth 24
SubSection "Display"
Depth 24
Modes "1600x1200" "1450x1050" "1280x1024" "1024x768" "800x600"
EndSubSection
EndSection
The first thing to try is simply adding the desired mode to the subsection for the Depth you are using. (You may find many different subsections for different depths---you can delete all except the one you actually use.
If this does not work, then try a modeline. Here is what I get using the "gtf" utility:
Code:
mherring@Ath:~$ gtf 1024 600 60
# 1024x600 @ 60.00 Hz (GTF) hsync: 37.32 kHz; pclk: 48.96 MHz
Modeline "1024x600_60.00" 48.96 1024 1064 1168 1312 600 601 604 622 -HSync +Vsync
The part we care about is shown in bold. Add this to the "monitor" section and then add the name of the mode in the screen section.
When I use a modeline, I typically delete (or comment with "#") all other modes.