Live Wallpapers Remix for ERE53 roms

This is a discussion on Live Wallpapers Remix for ERE53 roms within the Droid Hacks forums, part of the Droid Hacking category; I updated the Neural Network live wallpaper for ESE53 roms to be blue, green or yellow instead of red. You can now also download my ...

+ Reply to Thread
Page 1 of 7 1 2 3 ... LastLast
Results 1 to 10 of 62

Thread: Live Wallpapers Remix for ERE53 roms

  1. Developer
    jrummy16's Avatar
    Member #
    31454
    Join Date
    Jan 2010
    Location
    Orange County, CA
    Posts
    1,212
    Liked
    10 times
    Phone
    Moto Droid
    DroidForums.net Developer
    DroidForums.net Theme Developer
    Premium Member
    #1

    Smile Live Wallpapers Remix with interactive Nexus wallpaper

    I updated the Neural Network live wallpaper for ESE53 roms to be blue, green or yellow instead of red. You can now also download my modified working Nexus Live Wallpaper! I also added the changes Pete made to the Water live wallpaper so the trees are no longer upside down. Thought I might as well share if anyone is interested. Thanks goes to Duhman for an easy turtorial on how to do this.

    Instructions using Root Explorer:

    Download and change the file name to LiveWallpapers.apk
    Place in the root of your sd card
    Using root explorer copy and paste to system/app
    (rename your old LiveWallpapers.apk to LiveWallpapers.bak if you want a backup)
    Long press and select permissions
    Check read and write boxes at the top.
    Reboot

    Using Terminal Emulator:

    Download and change the file name to LiveWallpapers.apk
    Place in the root of your sd card
    Open terminal Emulater and type the following
    su
    mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
    busybox cp -R /sdcard/LiveWallpapers.apk /system/app
    mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system
    sync
    reboot


    Attached Files
    Last edited by jrummy16; 03-09-2010 at 01:47 AM.
  2. Sponsor
    DF Advertising
    Join Date
    Nov 2008
    Location
    DroidForums.net
     
     
     
     
  3. Droid
    Larkitect's Avatar
    Member #
    32006
    Join Date
    Jan 2010
    Location
    South Carolina
    Posts
    63
    Phone
    Motorola Droid
    #2
    thanks. i hadn't seen this blue version yet. i liked the red, but the blue is really nice. looks great, especially with the background.
    the problem with computers is that they do what you tell them to do and not what you want them to do.
  4. Developer
    jrummy16's Avatar
    Member #
    31454
    Join Date
    Jan 2010
    Location
    Orange County, CA
    Posts
    1,212
    Liked
    10 times
    Phone
    Moto Droid
    DroidForums.net Developer
    DroidForums.net Theme Developer
    Premium Member
    #3
    If anyone wants green or yellow for the Neural Network wallpaper I could do that too.
  5. Beta Team
    thebowers's Avatar
    Member #
    8519
    Join Date
    Nov 2009
    Location
    Iowa
    Posts
    2,548
    Twitter
    dabowerman
    Phone
    Rooted Droid, OC @ 1.1 Ghz
    DroidForums.net Theme Developer
    Premium Member
    #4
    Sure a yellow would be great. Question for you. Can you explain the whole process of extracting the wallpaper files, editing and getting them back onto your droid?
    If you like what I do, thanks



    Your can follow me as follows

    @dabowerman - Twitter
    Derek Bower - G+ - this is where I will be @ the most and where stuff gets released first.

    Theming Guides that might come in handy
    Theming Guide for Progress Bar
    Notification Text Color Change (How to)
    Theming Guide for System Text
  6. Droid
    Larkitect's Avatar
    Member #
    32006
    Join Date
    Jan 2010
    Location
    South Carolina
    Posts
    63
    Phone
    Motorola Droid
    #5
    oooooh, green. that could be interesting.
    the problem with computers is that they do what you tell them to do and not what you want them to do.
  7. RS Admin
    christim's Avatar
    Member #
    30681
    Join Date
    Jan 2010
    Location
    New England
    Posts
    5,143
    Phone
    Moto-Droid - rooted
    Premium Member
    #6
    Screenshots? I know it will be a snapshot of moving wallpapers but it will give us an idea of what the Neural Network one even looks like. Thanks.
    Chris

    If you apply a rom or theme - backup first!
    If you don't know how to backup...Stop until you do.
    hint: I name my backups like this: sg6.0_20100428 or ss4.2_20100626 to easily find them later. rom and date.


    Have a Problem, Click here to Visit the Rescue Squad
  8. Droid Sensei
    natediddy1120's Avatar
    Member #
    23380
    Join Date
    Jan 2010
    Location
    ???
    Posts
    3,183
    Phone
    CyanogenMod :-)
    #7
    Quote Originally Posted by christim View Post
    Screenshots? I know it will be a snapshot of moving wallpapers but it will give us an idea of what the Neural Network one even looks like. Thanks.
    Why not just flash an ese53 rom?

  9. Master Droid
    alienware777's Avatar
    Member #
    10139
    Join Date
    Nov 2009
    Posts
    604
    Liked
    6 times
    Phone
    Droid
    #8
    Could you possibly get a nueral network with many colors instead of just one? Like the old nexus one. Thanks.
  10. Senior Droid
    thorn11166's Avatar
    Member #
    19463
    Join Date
    Dec 2009
    Location
    Arkansas
    Posts
    199
    Phone
    DROID!!!
    #9
    i just want the Nexusmod live wallpaper to work! and i would be happy
  11. Master Droid
    sneaky_zekey's Avatar
    Member #
    14751
    Join Date
    Dec 2009
    Posts
    843
    Phone
    motorola droid
    #10
    this is how you change the colors


    adb pull LiveWallpapers.apk from phone

    open the apk using winrar (or 7zip) navigate to the res/raw folder. Inside is a file nexus.rs. Drag it out to your pc and open it with Notepad++.

    find this section.

    void setColor(int c) {
    if (State->mode == 1) {
    // sholes red
    color(1.0f, 0.0f, 0.0f, 0.8f);
    } else if (c == 0) {
    // red
    color(1.0f, 0.0f, 0.0f, 0.8f);
    } else if (c == 1) {
    // green
    color(0.0f, 0.8f, 0.0f, 0.8f);
    } else if (c == 2) {
    // blue
    color(0.0f, 0.4f, 0.9f, 0.8f);
    } else if (c == 3) {
    // yellow
    color(1.0f, 0.8f, 0.0f, 0.8f);
    }
    }

    replace the sholes red part with bold text:
    void setColor(int c) {
    if (State->mode == 1) {
    // sholes blue
    color(0.0f, 0.4f, 0.9f, 0.8f);

    save the file and drag it from your pc into the raw folder that is still open in winrar.. and click ok when the window pops up. This will make the blue streaks now.

    I also went into the drawable-hdpi folder and dragged out the nexus-thumb.jpg and edited it in gimp to be blue following the same process... that way you get the matching thumbnail when picking the live wallpaper.

    adb push the new LiveWallpapers.apk back to /system/app
+ Reply to Thread
Page 1 of 7 1 2 3 ... LastLast

Sponsors

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Similar Threads

  1. What's this?! Live wallpapers for 2.01?!
    By JonKyu in forum Droid Hacks
    Replies: 270
    Last Post: 02-22-2010, 02:24 PM
  2. Live Wallpapers
    By Matth3w in forum Droid General Discussions
    Replies: 13
    Last Post: 02-16-2010, 08:34 PM
  3. why don't live wallpapers run on 2.0.1?
    By ten2o3 in forum Motorola Droid
    Replies: 3
    Last Post: 01-30-2010, 02:36 AM
  4. Live Wallpapers
    By rebornlaxer in forum Droid General Discussions
    Replies: 3
    Last Post: 01-29-2010, 06:20 PM
  5. live wallpapers?
    By Rand0mNumb3r5 in forum Motorola Droid
    Replies: 6
    Last Post: 01-29-2010, 09:44 AM

Search tags for this page

3 section pyramid
,

3d png wallpaper

,

background site net

,
darky rom live walpaper
,
descargar neural network live wallpaper
,
droid neural network live wallpaper blue
,
green neural live wallpaper
,

how to re add neural network live wallpaper

,

magic smoke live wallpaper apk

,

music live wallpaper

,
neural net live wallpaper descarga
,
neural network livewallpaper free ???????
,

neuron live wallpaper

,

nexus live wallpaper blue

,
nexus ns neural network live wallpaper download xda
,

raw themes live wallpaper apk

,
special room live wallpaper
,
trees live wallpaper bionic
,
walpaper remix
,

walpapers neural network

Click on a term to search our site for related topics.

Tags for this Thread