N Nicenluvle macrumors newbie Original poster Jul 26, 2009 10 0 Aug 4, 2009 #1 How do I make the time on the status bar invisible?
ViViDboarder macrumors 68040 Jun 25, 2008 3,447 2 USA Aug 4, 2009 #2 Nicenluvle said: How do I make the time on the status bar invisible? Click to expand... Black electricians tape. Works like a charm!
Nicenluvle said: How do I make the time on the status bar invisible? Click to expand... Black electricians tape. Works like a charm!
Roessnakhan macrumors 68040 Sep 16, 2007 3,518 510 ABQ Aug 4, 2009 #3 Make a new theme with a file called Info.plist that contains the following (enable in Winterboard): Code: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>TimeStyle</key> <string>display:none</string> </dict> </plist> Code: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>TimeStyle</key> <string>visibility:hidden</string> </dict> </plist> Once of these may work. Granted I cannot test it because I just re-jailed my phone, but the properties are essentially CSS.
Make a new theme with a file called Info.plist that contains the following (enable in Winterboard): Code: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>TimeStyle</key> <string>display:none</string> </dict> </plist> Code: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>TimeStyle</key> <string>visibility:hidden</string> </dict> </plist> Once of these may work. Granted I cannot test it because I just re-jailed my phone, but the properties are essentially CSS.