Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Unless it's adb wireless![]()
Okay, yes, you're right, but that's not going to be faster than usb, unless there's something significantly wrong with the universe.
Okay, I'm back. Thanks akaza for that tasker info, I'll definitely look into it. Also looking into ncurses, because I reflashed MIUI, no restore. Still no libncurses.so, so I'm thinking, make a backup, push the file, and chmod it.
I just couldn't give up the awesome notification toggles from miui. I am also digging through a backup on my comp to see if I can find that file and maybe just use it on other roms.
I'll get back to you guys if I get this bash stuff working.
Give me some time to look into it. I've never actually used MIUI. We might need to talk to novox. I seem to recall him talking about getting bash working, and I'm pretty sure he's a MIUI user. Otherwise, if it's notification toggles you want, CM7 has those, too.
Okay, I'm digging through it now (thanks to your Read/Copy thread), and I've come across /etc/bash/ directory, but it looks like it just has bash_logout and bashrc in it....
Okay, enough digging, I'm gonna push that file now.
Mulit tasking too much.
MIUI has it in /system/xbin, I'm hoping that the adb push works this time./etc generally contains system config type stuff. Bash itself should be in either /system/bin/ or /system/xbin, as far as Android is concerned.
.Give me some time to look into it. I've never actually used MIUI. We might need to talk to novox. I seem to recall him talking about getting bash working, and I'm pretty sure he's a MIUI user. Otherwise, if it's notification toggles you want, CM7 has those, too.

Yeah...miui has like 30 of them...but you wouldn't know that![]()
Lol, fair enough.

Meh you should try it at least once. Though my sd card fried while on it so I'll never go back![]()
.Lol. I don't see how a ROM could actually fry your sdcard, unless there was some low level corruption, some how, which is pretty unlikely. Either way, if I wanted my phone to look like an iphone, I'd have bought an iphone. Yeah, I said it.
I wasn't blaming it just bad memories lol. Also I hate the iphone look, I changed the theme IMMEDIATELY.
Haha, I know. That definitely was a bummer. Did you ever look into your warranty? I know, this conversation keeps moving from thread to thread...
Yeah, that's definitely the worst part. Anyway, let me see if I can get this thread back on topic again. 9to5cynic, let me know if that other .bashrc file works out for you. It should.

if [ `whoami` == "root" ];then
HOME="/"
PROMPT_H=$YELLOW_H
else
HOME="$sd"
PROMPT_H=$GREEN_H
fi
Quick exercise for you.
I'm trying to rename the bootanimation.zip file in /system/media.
mv bootanimation.zip bootanimation2.zip
I get mv: can't rename bootanimation.zip : read-only file system.
I try to make a permissions change.
chmod 755 bootanimation.zip
And I get something of the same.
chmod: read-only file system.
. Of course, I'm sure you know to make backups before changing things there
.
). You shouldn't need to do chmod, first, as the permissions are probably fine. You'd have gotten a permission denied error if that was the problem, but that wouldn't make sense. In order to copy a file to the same location, you need read permission on the file, and write permission to the directory, both of which you have with root. It'd be a big problem if you didn't.Woot woot. Nah I haven't gotten to bash on this thing yet.
Would the following put things back to normal when I'm done?
mount -o remount,ro -t yaffs2 /dev/block/mtdblock4 /system