The first time you run it looks like nothing happened, but the screen will flicker and if you run the command "xrandr" by itself you'll see the modeline was added. You need to then associate the mode to the display and switch to that mode with some commands like this:
Code:
:~$xrandr --addmode VGA 1280x1024_100.00
:~$xrandr --output VGA --mode 1280x1024_100.00
Of course the addmode and output is whatever output your monitor is listed under xrandr. Also you need to create the .xprofile file in your home directory and make it executable. So something like this should work:
First create the file:
Code:
:~$gedit ~/.xprofile
Add your working commands to the file and save:
Code:
xrandr --newmode "1280x1024_100.00" 189.50 1280 1376 1512 1744 1024 1027 1034 1087 -hsync +vsync
xrandr --addmode VGA 1280x1024_100.00
xrandr --output VGA --mode 1280x1024_100.00
Make the file executable:
Code:
chmod +x ~/.xprofile
If you're still having problems you can download one of the GUI programs I mentioned and try those instead.
Bookmarks