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.
Well here is my take on the Cardboard LS. Please refer to tadad1's post #4098 and IrishVixen's post #4149 for appropriated credits.

06b4fc34.jpg



Which theme is that?

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.

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!

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!
 
I really like this LS. Is it available in Cydia? I couldnt find it. What source is under? Thanks.

It's not available in Cydia, it's actually from the old dBar site. You might be able to contact the creator on his dA site and see if it's available still.
 
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!

oh ok, gracias, I like your version better, but I don't feel like going through all them changes, it's getting tiring lol
 
does optimizing theme do anything? only thing i've noticed was when i downloaded my theme onto my computer. the .pngs i cannot see 'em thats bout it
 
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:(
 

Attachments

  • Foto.PNG
    Foto.PNG
    923.6 KB · Views: 56
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! :eek:

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!
 
fA8S0l.jpg


Added a weather script to tadad's LS MIUI and used spil's weather icons that IrishVixen pointed out. Trying to decide on a Wallpaper, which is always the toughest part!
 
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! :D 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?

IMG_1000000772.jpg

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.
 
LOL! Well, I needed a giggle anyway, so I do appreciate the post! :D 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.

heres a tip for you... if you want to have the 0 to show on both AM and PM times 01,02,03 ect do this to the html script:

Make sure the
Code:
<!-- Pad the minutes and seconds with leading zeros, if required -->
IS BELOW THE
Code:
<!-- Convert hours component of "12" to "24" -->
!

So for example it should look like this:

Code:
<!-- 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;

and no matter if its AM or PM there will be a leading 0 to single digit hours!
 
Last edited:
Sweet, good to know!

In this case though, I actually don't want the leading zeros to appear either morning or afternoon. The hours are separate from the minutes in the display, and IIRC, I've right aligned the hours sometime back to stick with the dividing line--in other words, when the hours go from one digit to two and back, they're still staying positioned relative to that right hand side. So the leading zero isn't adding anything in this case (for some widgets, they're critical for spacing issues)--but it shows in the morning.

Of course, I don't often see it that early...! :D So it's not been a major issue.
 
Status
Not open for further replies.
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.