Hello everyone, was wondering if any of you might happen to know something that can help me. I've been searching the net for a way to get GNOME to change its resolution from a script. I can call gnome-display-properties but that pulls up a gui. Basically I am writing a script that launches a game for me with all the right options. I am using 1024*768 for normal usage but I like to switch to 640*480 to let the graphics appear smooth because whe scaled i the 1024*768 it runs a lil slower and looks real blockish. the script itself worx.
#!/bin/bash
snes9x -stereo "$1"
exit
Now what I
am trying to do is figure a way to changethe resolution automatically because the gui thing isn't real clean looking for me but this is what it looks like with the resolution change dialog and for now this worx.
#!/bin/bash
gnome-display-properties
snes9x -stereo "$1"
gnome-display-properties
exit
I just ant to avoid the resolution gui and it utomatically change to 640*480 and back without the gui popping up. Anyone with a deeper knowledge of gnome might be able to help. Thanx for reading.