Could set up an /etc/xorg.conf file, specify desired resolution and refresh rate. For example:
Option "metamodes" "1152x864_75 +0+0"
Example xorg.conf that you would need to customize for your hardware and needs:
Section "Monitor"
Identifier "Monitor0"
#VendorName "Monitor Vendor"
#ModelName "Monitor Model"
HorizSync 28.0 - 96.0
VertRefresh 50.0 - 75.0
Option "DPMS"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "82810 DC-100 (CGC) Chipset Graphics Controller"
BusID "PCI:0:1:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 16
#Option "metamodes" "1152x864_75 +0+0"
SubSection "Display"
Depth 16
#Modes "1024x768"
Modes "1152x864"
EndSubSection
EndSection
There are other ways too, such as a snippet in xorg.conf.d. Maybe even xset or xrandr, no idea. You will likely have good success just researching Xorg setup, just ensure any configuration file(s) you set up are saved in .filetool.lst and backed up for persistence.