A blast from the past. Really diggin LS Maximus![]()
I really like this LS. Is it available in Cydia? I couldnt find it. What source is under? Thanks.
A blast from the past. Really diggin LS Maximus![]()
Which theme is that?
I really like your status bar icons...what theme are they from? Especially your signal strength/3g/wifi icons. are those available by any chance? Really slick.
TIA!
I really like this LS. Is it available in Cydia? I couldnt find it. What source is under? Thanks.
Well here is my take on the Cardboard LS. Please refer to tadad1's post #4098 and IrishVixen's post #4149 for appropriated credits.
Image
It's a modded version of suave hd. Most icons were pulled from the suave hd thread on macthemes and a handful I made myself in PS. Also running Matte status bar notifications and Monty's Stearly dock.
Signal Dots inspired by Monty:
http://db.tt/IPugYgA
Matte Status Bar - Blue (The name escaped me, please forgive me and feel to scold accordingly lol):
http://db.tt/b2RNCE5
Enjoy!
[url=http://img691.imageshack.us/img691/2430/photooh.png]Image[/URL]
[url=http://img864.imageshack.us/img864/2471/photo1p.png]Image[/URL]
][ ][ ][V][ ][D ][_ ][E][
[url=http://img691.imageshack.us/img691/2430/photooh.png]Image[/URL]
[url=http://img864.imageshack.us/img864/2471/photo1p.png]Image[/URL]
][ ][ ][V][ ][D ][_ ][E][
Wow! Love it!
Really very clean set up,Superb![]()
What do you think? Too boring?
Any chance you'd share this theme?
[url=http://img691.imageshack.us/img691/2430/photooh.png]Image[/URL]
[url=http://img864.imageshack.us/img864/2471/photo1p.png]Image[/URL]
][ ][ ][V][ ][D ][_ ][E][
Hi Peeps i must restore my phone now i am running on 4.3.3 i use the postet Statusbar in Winterboard can someone told me how can i made it transparent to fit my wallpaper better i use transparent statusbar with no luck
Thanks in Advance![]()
Hey bud, can you share your dock, it's really nice!
Just found a bug in the code--midnight becomes 00!
To fix:
Find these lines (#61 & #63 if you're using a line numbering HTML editor):
Code:// Convert an hours component of "0" to "12" //currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;
Delete the commenting slashes from the second line to get this:
Code:// Convert an hours component of "0" to "12" currentHours = ( currentHours == 0 ) ? currentHours + 24 : currentHours;
I'll update the download file.
As for the temp, you can also move the weather icon over to the left a bit. Mine's now at 7px from the left (position is in mini.css).
zmulleni--that looks STUNNING. And LOL, but that was the dock I was thinking of that I never got around to using. Great minds...And if I might ask--where did that silent status bar icon come from? I've experimented with a few of them, can't get one I like so far.
It's not a bug.. 00 is standard military time for midnight. All you needed to do is edit one line if wanting it to show 12 (am)
And after re-reading the post I realized I over paid for my Hook on Phonics. So my bad posting what you did!
LOL! Well, I needed a giggle anyway, so I do appreciate the post!Didn't think about military time starting with 00--but since this was for a 12-hour setup (versus 24 hour), it still looks odd. That also explains why the AM hours go 01, 02, 03 and the PM's go 1, 2, 3 with this widget though. Might go in and fix that later if I get ambitious.
After a few weather changes and input from others, I did move the AM/PM and temp position on mine. Better?
View attachment 291848
PoindexterSS--Actually, that wallpaper is gorgeous! I need to come up with a blue toned abstract like that for a coordinating lockscreen to this SB. I also like that layout, with the small weather at the top where it's not such a focal point.
<!-- Pad the minutes and seconds with leading zeros, if required -->
<!-- Convert hours component of "12" to "24" -->
<!-- Convert hours component of "12" to "24" -->
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
<!-- Pad the minutes and seconds with leading zeros, if required -->
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;