
xrandr --newmode "1280x1024_60.00" 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync
xrandr --addmode VGA1 "1280x1024_60.00"
xrandr --output VGA1 --mode 1280x1024_60.00
met έγραψε:Με auto adjustment ήρθε ακριβώς
met έγραψε:1.Τι πρέπει να κάνω για να κρατήσει την ρύθμιση και να μην το δίνω κάθε φορά που bootάρω σε τερματικό;
gedit fix-resolution
#!/bin/bash
xrandr --newmode "1280x1024_60.00" 121.75 1400 1488 1632 1864 1050 1053 1057 1089 -hsync +vsync
xrandr --addmode VGA1 "1280x1024_60.00"
xrandr --output VGA1 --mode 1280x1024_60.00
exit 0
mkdir bin/
mv fix-resolution bin/
chmod +x bin/fix-resolution
gksudo gedit /etc/lightdm/lightdm.conf
session-setup-script=/home/$USER/bin/fix-resolution
could not apply the stored configuration for monitors
none of the selected modes were compatible with the possible modes:
Trying modes for CRTC 63
CRTC 63: trying mode 1024x768@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 63: trying mode 800x600@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 63: trying mode 800x600@56Hz with output at 1400x1050@60Hz (pass 0)
CRTC 63: trying mode 848x480@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 63: trying mode 640x480@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 63: trying mode 1024x768@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 63: trying mode 800x600@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 63: trying mode 800x600@56Hz with output at 1400x1050@60Hz (pass 1)
CRTC 63: trying mode 848x480@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 63: trying mode 640x480@60Hz with output at 1400x1050@60Hz (pass 1)
Trying modes for CRTC 64
CRTC 64: trying mode 1024x768@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 64: trying mode 800x600@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 64: trying mode 800x600@56Hz with output at 1400x1050@60Hz (pass 0)
CRTC 64: trying mode 848x480@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 64: trying mode 640x480@60Hz with output at 1400x1050@60Hz (pass 0)
CRTC 64: trying mode 1024x768@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 64: trying mode 800x600@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 64: trying mode 800x600@56Hz with output at 1400x1050@60Hz (pass 1)
CRTC 64: trying mode 848x480@60Hz with output at 1400x1050@60Hz (pass 1)
CRTC 64: trying mode 640x480@60Hz with output at 1400x1050@60Hz (pass 1)
sudo mkdir /etc/X11/xorg.conf.d/
gksudo gedit /etc/X11/xorg.conf.d/10-monitor.conf
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Device0"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1280x1024_60.00"
EndSubSection
EndSection