Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
Not open for further replies.
redline theme. noki widget

ns8pv.png
 
Check out the StatusBar, cool new tweak that lets you arrange the icons any way you like just by dragging them. Its called ArrangeStatusbar, but in Cydia right now it is spelled ArrageStatusbar.

49194dea.jpg
 
Check out the StatusBar, cool new tweak that lets you arrange the icons any way you like just by dragging them. Its called ArrangeStatusbar, but in Cydia right now it is spelled ArrageStatusbar.

I'd be cool if it would continue to work correctly after a respring/reboot.
 
I'd be cool if it would continue to work correctly after a respring/reboot.

Mine still works after a respring/reboot. I only have the Signal/WiFi/Battery showing but they still work, I just rebooted to double check. Maybe another StatusBar tweak you have is causing issues? I am using Springtomize to hide Statusbar icons. I wondered if this or cleanstatus would still work.
 
Mine still works after a respring/reboot. I only have the Signal/WiFi/Battery showing but they still work, I just rebooted to double check. Maybe another StatusBar tweak you have is causing issues? I am using Springtomize to hide Statusbar icons. I wondered if this or cleanstatus would still work.

Agh could be cleanstatus. Installed it and never used it! I swap the time and carrier logo and when the time changed it moved it to the battery... Hence it being a little buggy

EDIT---

Yep it's still buggy. Move my clock lock my screen and unlock it and clock moved to battery. I'll wait til update! Nice find though!
 
Last edited:
Check out the StatusBar, cool new tweak that lets you arrange the icons any way you like just by dragging them. Its called ArrangeStatusbar, but in Cydia right now it is spelled ArrageStatusbar.

Image

that's an awesome set up you got, you think you could post the widget/wallpaper?
 
been busy with a lot of stuff lately... anyway happy independence day :)
Here is my 266hd setup, going simple monochrome style

Image

Image

thanks to Jonny Wood and dbarevolution

also props to tadad1 and murdercitydevil for the awesome contributions ;)
holy crap that looks great.

can you help me get my device looking similar ._.?
 
Check out the StatusBar, cool new tweak that lets you arrange the icons any way you like just by dragging them. Its called ArrangeStatusbar, but in Cydia right now it is spelled ArrageStatusbar.

Image

Those icons looks awesome! Would you mind telling me which theme is that and the widget too? Or maybe you could send it to me via e-mail?

Thanks!
 
that's an awesome set up you got, you think you could post the widget/wallpaper?

Those icons looks awesome! Would you mind telling me which theme is that and the widget too? Or maybe you could send it to me via e-mail?

Thanks!

The widget is post in post# 4149 here:

https://forums.macrumors.com/showthread.php?p=12851307&blue+mood#post12851307

I just moved the temp I think.

More of the same wallpaper in different colors here:

http://macthemes.net/forum/viewtopic.php?pid=823134

The icons are most(if not all) from the icon request thread here:

https://forums.macrumors.com/threads/1105595/

If you want what I have bundled already, send me your email address by PM and I will send them to you. Its not very many because its only the ones I wanted.
 
I just got Glasklart, it looks good, except 2 problems.

The first one is my Netflix app didn't change to Glasklart. And when I went to see all the icons on Glasklart on iFile, Netflix wasn't listed there! Is there no way to change it ?

Second, and this one is weird, is that one of my folders made through the app Categories isn't changing. It's weird cause all of my other folders changed, just not this one. I changed the icon of this folder to match another one, but it still won't change.


Help?
 
I just got Glasklart, it looks good, except 2 problems.

The first one is my Netflix app didn't change to Glasklart. And when I went to see all the icons on Glasklart on iFile, Netflix wasn't listed there! Is there no way to change it ?

Second, and this one is weird, is that one of my folders made through the app Categories isn't changing. It's weird cause all of my other folders changed, just not this one. I changed the icon of this folder to match another one, but it still won't change.


Help?

You will get the help you need here:

https://forums.macrumors.com/threads/1181674/
 
been busy with a lot of stuff lately... anyway happy independence day :)
Here is my 266hd setup, going simple monochrome style

Image

Image

thanks to Jonny Wood and dbarevolution

also props to tadad1 and murdercitydevil for the awesome contributions ;)


**** sake....its ******* BEAUTIFUL
Gonna get ths theme now...
 
been busy with a lot of stuff lately... anyway happy independence day :)
Here is my 266hd setup, going simple monochrome style

Image

Image

thanks to Jonny Wood and dbarevolution

also props to tadad1 and murdercitydevil for the awesome contributions ;)

paid for it bt plz plz if i hav a BUMP help me to get set up like urs....

(D/LOADIN.......)
TIA
 
been busy with a lot of stuff lately... anyway happy independence day :)
Here is my 266hd setup, going simple monochrome style

Image

Image

thanks to Jonny Wood and dbarevolution

also props to tadad1 and murdercitydevil for the awesome contributions ;)

Very nice, I really like the Lockscreen Widget. Has that been released anywhere?

I've been looking at this lately also, anyone know of an english version? It shouldnt be very hard to convert, but if someone has already done it, then I don't need to;).

http://schn3d1.deviantart.com/favourites/?offset=24#/d3f2zjl

Screenshot2011-07-04at63248PM258x510.png
 
Last edited:
Probably need to find a different wallpaper, but got the widget translated, not that it was difficult:

f641c8a6.jpg
 
Can u upload your mod so I don't have to edit the HTML myself :D

Was gonna make the same layout

Thanks

LS Fireworks (based on gary008's "Green"):

http://www.mediafire.com/?d3j0d77o1qeobx8

For other background images, I tend to prefer to have the temp/desc moved under the weather icon, but that just didn't work for this image. Desc is right aligned, not left, so you shouldn't have positioning issues as the weather status changes.

FYI--positioning for temp & desc are in the mini.css file (along with the weather icon), but the separator bar between them is in the main HTML; the code that starts with:

Code:
<p style="display:block;position: absolute; top: 12px;

...dictates the position and size for that bar.

(line 367 for those using a line counter in their editing tools)

Everything else edits in the main HTML file.

Have fun!
 
Last edited:
Can someone help me out with the 12 and 24 hr options in the HTML files. Some are easy to change, others not. I typically see this though:

Code:
// Convert an hours component of "0" to "12"

 [COLOR="red"]//[/COLOR]currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;



// Convert the hours component to 12-hour format if needed

[COLOR="Red"]//[/COLOR] currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;



// Convert an hours component of "0" to "12"

 [COLOR="red"]//[/COLOR]currentHours = ( currentHours == 0 ) ? 12 : currentHours;

Is removing the red // all you need to do to convert from 24hr to 12hr time?

If I am looking at this correct, the first part if the hour is 0 it adds 24? This part I dont understand

The second part makes sense, if the hours are over 12 it subtracts 12.

The third part if the hour is 0, it changes it to 12. This makes sense also.

So what does that first part do?
 
Status
Not open for further replies.
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.