Author Topic: Nice Wallpaper With Theme Installation Script  (Read 6357 times)

TAIOU4

  • Newbie
  • *
  • Posts: 4
    • View Profile
Nice Wallpaper With Theme Installation Script
« on: April 05, 2005, 08:33:55 pm »
I'm using KAGAYA's gallery for my wallpaper, thoese are petty and nice.

KAGAYA Website(Japanese)

My Desktop 1
My Desktop 2


And I'm using MAC OS icon on my Zaurus desktop.  I fixed the problem on copying file overwrite the link in pics and pics144 directory(Read-Only File System) by my theme installation script for Org ROM and Cacko :

----------------------------- Install ----------------------------------
#!/bin/bash

# ----------------------------------------------------------------------
# Please put the file in SD Card with following structure :
#       |- skin
#               |- pics
#               |- pics144
#               |- script
# ----------------------------------------------------------------------

SRC="/mnt/card/skin"
TGT="/opt/QtPalmtop"

echo Linking "$TGT"/pics
cd "$TGT"/pics
for i in $SRC/pics/*.* ; do
  rm `basename $i`
  ln -s $SRC/pics/`basename $i` $TGT/pics/`basename $i`
done

echo Linking "$TGT"/pics144
cd "$TGT"/pics144
for i in $SRC/pics144/*.* ; do
  rm `basename $i`
  ln -s $SRC/pics144/`basename $i` $TGT/pics144/`basename $i`
done

echo Completed

----------------------------- Restore ----------------------------------
#!/bin/bash

SRC="/usr/QtPalmtop.rom"
TGT="/opt/QtPalmtop"

echo Linking "$TGT"/pics
cd "$TGT"/pics
for i in $SRC/pics/*.* ; do
  rm `basename $i`
  ln -s $SRC/pics/`basename $i` $TGT/pics/`basename $i`
done

echo Linking "$TGT"/pics144
cd "$TGT"/pics144
for i in $SRC/pics144/*.* ; do
  rm `basename $i`
  ln -s $SRC/pics144/`basename $i` $TGT/pics144/`basename $i`
done

echo Completed
-------------------------------------------------------------------------

Enjoy  
« Last Edit: April 06, 2005, 04:49:50 am by TAIOU4 »

penguinsam

  • Jr. Member
  • **
  • Posts: 51
    • View Profile
    • http://
Nice Wallpaper With Theme Installation Script
« Reply #1 on: April 07, 2005, 05:22:19 am »
great job!

how about the mac icons? where can i find that?

TAIOU4

  • Newbie
  • *
  • Posts: 4
    • View Profile
Nice Wallpaper With Theme Installation Script
« Reply #2 on: April 07, 2005, 10:21:34 am »
Quote
great job!

how about the mac icons? where can i find that?
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]

You can find a lots of MAC icon from this site :
[a href=\"http://www.jonmega.com/iceman/]http://www.jonmega.com/iceman/[/url]