Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
I am following the instructions.
a7avube7.jpg

I am getting this when i change the png file
eba6e5e5.jpg

I am trying to get this as the background.
a9e7a7av.jpg


Any help?!
Need any more info.


Sent from my iPhone 5 using Tapatalk 2
 

IrishVixen

macrumors 68020
Jun 20, 2010
2,497
104
If you're using the version from his repo, the instructions are wrong. Rename the image bg.jpg instead of .png. Respring. (May need to deselect/reselect in Winterboard for the change to take effect.)
 

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
Typo5 Lock-screen background change problem

Im using patrickmuff.ch/repo
Whats the correct repo to use?


Sent from my iPhone 5 using Tapatalk 2

----------

yvymaqem.jpg

Does not look good but i learned how to change the bg thank you


Sent from my iPhone 5 using Tapatalk 2

----------

Now this looks SWEET
y5eby6aj.jpg



Sent from my iPhone 5 using Tapatalk 2
 

IrishVixen

macrumors 68020
Jun 20, 2010
2,497
104
Zmanbaseball2 said:
Does not look good but i learned how to change the bg thank you


Sent from my iPhone 5 using Tapatalk 2

You're welcome. :) Yeah, some lockscreens and SB widgets just look better with certain images than others. It's often a trial & error thing; I'll go through five or six backgrounds before I find one I like with a certain setup. Have fun!
 

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
You're welcome. :) Yeah, some lockscreens and SB widgets just look better with certain images than others. It's often a trial & error thing; I'll go through five or six backgrounds before I find one I like with a certain setup. Have fun!

What theme/ custom bg do u use.


Sent from my iPhone 5 using Tapatalk 2
 

IrishVixen

macrumors 68020
Jun 20, 2010
2,497
104
Just depends on my mood. I ran the Colorflow LS for a few days with different backgrounds; had a modded version of schnedi's LS Inme up for most of this week. I'm still going through some of my old iPhone 4 lockscreens and trying to decide what's worth the work of repositioning things in the HTML for the iPhone 5's screen. For SB stuff, I'm teaching myself to recode old Winterboard themes as iWidgets. I probably have 40 or so that I used to use that need fixing.

Then someone posts a new one to the homescreen thread, and I download that instead of reworking my own widgets. LOL
 

SoLongAndroid

macrumors member
Jan 18, 2013
79
1
Anyone know how to modify some coding to change from 24 hour clocks to 12? I've had the issue with different lock screen themes and seen the code for 12 hour clocks but when I modify them or replace them I end up with a black lock screen.
 

will90039

macrumors member
Oct 12, 2012
56
5
Im using patrickmuff.ch/repo
Whats the correct repo to use?


Sent from my iPhone 5 using Tapatalk 2

----------

Image
Does not look good but i learned how to change the bg thank you


Sent from my iPhone 5 using Tapatalk 2

----------

Now this looks SWEETImage


Sent from my iPhone 5 using Tapatalk 2

Which status bar font is in the 2nd picture?
 

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
Typo5 Lock-screen background change problem

Which status bar font is in the 2nd picture?

Boxii Font

----------

Anyone know how to modify some coding to change from 24 hour clocks to 12? I've had the issue with different lock screen themes and seen the code for 12 hour clocks but when I modify them or replace them I end up with a black lock screen.

You need Ifile
Look in the first pic it has directions of how to Do this.
Private, var, stash, themes, dslk- typo5, Lockbackground.html, find: var Make_It_12_Hour = true;
Once that gets changed the clock changes to 12 hr without any respring or re boot

----------

What I want to know if I can add seconds to the time!
 

Coyote97

macrumors newbie
Apr 11, 2013
6
0
Tegucigalpa, Honduras
Add Seconds

All the credit goes to the creator of Typo5 lock screen, and thanks to him for creating it, I have enjoyed it a lot.

here it goes....

var hours = currentTime.getHours();
var minutes = currentTime.getMinutes();
var seconds = currentTime.getSeconds();

hours = hours ? hours : 12;
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;

document.getElementById("time").innerText = "{0}:{1}:{2}".format(hours, minutes, seconds);
 

Attachments

  • IMG_1279[1].PNG
    IMG_1279[1].PNG
    343.7 KB · Views: 233
Last edited:

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
All the credit goes to the creator of Typo5 lock screen, and thanks to him for creating it, I have enjoyed it a lot.

here it goes....

var hours = currentTime.getHours();
var minutes = currentTime.getMinutes();
var seconds = currentTime.getSeconds();

hours = hours ? hours : 12;
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;

document.getElementById("time").innerText = "{0}:{1}:{2}".format(hours, minutes, seconds);

Thank you, it worked great:)


Sent from my iPhone 5 using Tapatalk 2
 

Coyote97

macrumors newbie
Apr 11, 2013
6
0
Tegucigalpa, Honduras
Where it said fernando/ guess what. How do i change that?


Sent from my iPhone 5 using Tapatalk 2

Here you go...

<div id="motivation">
<div class="motivation-holder">
<div class="small-text">
<p>Fernando, today is...</p>
</div>
<div class="big-text">
<h1><span id="literal-day"></span></h1>
</div>
<div class="small-text">
<p><span id="month-text"></span></p>
</div>
<div class="big-text">
<h1><span id="month"></span></h1>
</div>
<div class="small-text">
<p>time</p>
</div>
<div class="big-text">
<h1><span id="time"></span></h1>
</div>
<div class="small-text">
<p><span id="am-pm"></span</p>
</div
</div>
</div>
 

Attachments

  • name.png
    name.png
    72.2 KB · Views: 295

Zmanbaseball2

macrumors 68040
Original poster
Aug 24, 2012
3,542
11
New York, USA
Here you go...

<div id="motivation">
<div class="motivation-holder">
<div class="small-text">
<p>Fernando, today is...</p>
</div>
<div class="big-text">
<h1><span id="literal-day"></span></h1>
</div>
<div class="small-text">
<p><span id="month-text"></span></p>
</div>
<div class="big-text">
<h1><span id="month"></span></h1>
</div>
<div class="small-text">
<p>time</p>
</div>
<div class="big-text">
<h1><span id="time"></span></h1>
</div>
<div class="small-text">
<p><span id="am-pm"></span</p>
</div
</div>
</div>

One more thing,
Can i make the text more wider? It annoying to read it when the time text is so tall and skinny.


Sent from my iPhone 5 using Tapatalk 2
 

Coyote97

macrumors newbie
Apr 11, 2013
6
0
Tegucigalpa, Honduras
Are you the developer or something!? Lol


Sent from my iPhone 5 using Tapatalk 2


Naaa I wish I were, I just do reverse engineering, its like a second hobby lol, I will give you a nice full sheet on what each item is and what it does, on the typo5 lock screen. I do that on Sunday. I have some work to hand in Saturday and see some clients.

What I do for a living is 3D Building Information Modelling or BIM for short, Renders, Animations, Real-time walk through, Augmented Reality models, any thing related with architecture.

here is my site... 3dsolutionshn.weebly.com you are more than welcome if you like to visit the site.

Read ya later

----------

I changed the color to red so it's easier to see on my white bg lol

Please post some screen captures of your lock screen
 

tymaster50

Suspended
Oct 3, 2012
2,833
58
Oregon
Naaa I wish I were, I just do reverse engineering, its like a second hobby lol, I will give you a nice full sheet on what each item is and what it does, on the typo5 lock screen. I do that on Sunday. I have some work to hand in Saturday and see some clients.

What I do for a living is 3D Building Information Modelling or BIM for short, Renders, Animations, Real-time walk through, Augmented Reality models, any thing related with architecture.

here is my site... 3dsolutionshn.weebly.com you are more than welcome if you like to visit the site.

Read ya later

----------



Please post some screen captures of your lock screen
Here
 

Attachments

  • image.jpg
    image.jpg
    196.5 KB · Views: 202

Aleohansen

macrumors newbie
Jun 10, 2013
3
0
Hey this lockscreen is fantastic but I can't get the music controls to work. If anyone could offer some assistance I'd greatly appreciate it
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.