iCeD00D said:
Tutut -- Would you mind PMing me or posting which ever you like, on how you where able to change your desktop
Everything is in /usr/gp2x, for example :
/usr/gp2x/imgmain/body.png is the main background
/usr/gp2x/imgcommon/body_explorer.png is the explorer background
The specs of the pictures that work for me with The Gimp (I can't help with Photoshop my PC is running Linux) :
Width=320
Height=240
X resolution=72dpi
Y Resolution=72dpi
Color space=RGB
Here's a script to get the pictures used in the F200 firmware.
#/bin/sh
cp -R /usr/gp2x/img* /mnt/sd/backup
cd /usr/gp2x
./gp2xmenu
Copy those lines in notepad, save the file as imgbackup.gpe on your SD card and create a directory named backup at the root of the card.
Insert the card in the console, power on and launch imgbackup.gpe, the screen will get black during the copy (10 to 15 seconds).
I think the easiest way to modify is to launch a script that copy your image from the SD card to the console.
For example :
#/bin/sh
cp -f /mnt/sd/path_to_new_background/your_image.png /usr/gp2x/imgmain/body.png
cd /usr/gp2x
./gp2xmenu
cp is the Linux command to copy files and/or directories, you can read the manual page
here.
I didn't use a script the first time but
sterm and type the command line to overwrite the new background of my F200.
Tell me if I missed something.