Notices


Reply
Thread Tools
DJJonosound's Avatar
Posts: 411 | Thanked: 302 times | Joined on May 2012 @ Australia
#1

iOS 7 theme for Harmattan

I really like iOS7’s design. So I made a harmattan theme. Hopefully this will be the most full iOS7 theme out. Have a [reasonable] suggestion of something that should be added? Tell me

Disclaimer:
I am not responsible for damage this may cause. Install at your own risk.
Credits:
MK99 - consultations (lock screen)
Ancelad - lots of consultations (a lot of things, wouldn’t of been possible without him)
Info:
Version 1.0, has most of the UI done fairly well. Some elements still need a bit of sprucing up. Icons are good. Some need to be changed. A few 3rd party icons are supplied in /meegotouch/icons/3rd party/. You need to install them yourself. Still many buggy parts.
Known Bugs:
Please do not bother me about these. I know about them and are going to fix them sometime.
- Terminal text spacing is horrible. I am not sure how to fix this. Use SSH.
- Some icons are not shown in the settings app. I know its horrible, I am still trying to figure out the names.
- Music player playlist has white text. Impossible to see. Don't know the tag to change it.
Screenshots:


Download:

READ CAREFULLY
Font files are included in the deb file. The deb install will install a font folder in /home/user/MyDocs/Fonts. This contains the helvetica font. Using >>>font manager<<< (link) in the app store, set Helvetica Neue Ultralight as the default font for the first 2 categories. THE FONT NEEDS TO BE INSTALLED FOR SOME ELEMENTS TO WORK CORRECTLY. Once the font is installed, apply the theme using the theme settings application of your choice.
Download from OpenRepos
Here is a download link to the image. Apply with home screen settings or N9QT if it does not automatically work
Color Variants:
There are 3 other color variants of the theme available. The link has zip files for red, green, yellow, and the default blue. Unzip to /usr/share/themes/Full iOS7 theme/. It will replace the files, so if you want to revert, just unzip the blue files to the directory. I wont make a deb for these because it would remove the original pictures on uninstall, meaning the theme would be missing statusbar, app headers, and backgrounds.
https://www.dropbox.com/sh/lzy3l6lvrkgkp23/OvQ8BWxZeW

Have fun

Last edited by DJJonosound; 2015-02-28 at 03:42.
 

The Following 39 Users Say Thank You to DJJonosound For This Useful Post:
Posts: 673 | Thanked: 230 times | Joined on Oct 2012 @ Mumbai
#2
Will u add third party app icons???
__________________
MeeGo Wont Die
2016
 

The Following User Says Thank You to zaidk9 For This Useful Post:
DJJonosound's Avatar
Posts: 411 | Thanked: 302 times | Joined on May 2012 @ Australia
#3
If you can tell me how, and I can find the appropriate icon templates and icon files, maybe sometime :P
 

The Following 2 Users Say Thank You to DJJonosound For This Useful Post:
DJJonosound's Avatar
Posts: 411 | Thanked: 302 times | Joined on May 2012 @ Australia
#4
aaaannndddd reboot loop..

We have gone too deep!

My question to all those willing to help now: does anyone know how to center the clock on the lock screen without reboot looping it?

Last edited by DJJonosound; 2013-09-25 at 12:25.
 

The Following 2 Users Say Thank You to DJJonosound For This Useful Post:
Posts: 835 | Thanked: 772 times | Joined on Oct 2007 @ Finland
#5
If I remember correctly, you can't.

Suggestion, it's possible to add shadow to icons on homescreen (ie. Faenza), perhaps you could create a shadow for icons name and have it aligned beneath the titles for better readability

EDIT. btw the theme looks really nice
 

The Following 4 Users Say Thank You to Kozzi For This Useful Post:
DJJonosound's Avatar
Posts: 411 | Thanked: 302 times | Joined on May 2012 @ Australia
#6
Thanks, I did however find it was awkward to have that because I usually use an application called blackblok which makes spaces. (It left just a shadow) Also iOS7 looks rather clean. I think I might just find the CSS document to make the text black.. Hopefully..
 

The Following User Says Thank You to DJJonosound For This Useful Post:
MK99's Avatar
Posts: 644 | Thanked: 480 times | Joined on Jul 2012 @ Finland
#7
Originally Posted by DJJonosound View Post
My question to all those willing to help now: does anyone know how to center the clock on the lock screen without reboot looping it?
Do you mean like this?

http://pastebin.com/h6N0aJ3r
https://www.dropbox.com/s/nfp1ryl7tl...0925164553.png
 

The Following 3 Users Say Thank You to MK99 For This Useful Post:
DJJonosound's Avatar
Posts: 411 | Thanked: 302 times | Joined on May 2012 @ Australia
#8
Yep, thanks man.
Do you mind sharing how to import this in?
I have caused myself 4 reboot loops as previously mentioned trying to do this :P
@MK99

Last edited by DJJonosound; 2013-09-26 at 04:57.
 

The Following User Says Thank You to DJJonosound For This Useful Post:
MK99's Avatar
Posts: 644 | Thanked: 480 times | Joined on Jul 2012 @ Finland
#9
Just copy these values to:
YOUR_THEME/meegotouch/libsysuid-screenlock-nokia/style/libsysuid-screenlock-nokia.css

Code:
LockScreenHeader ScreenLockClockStyle#LockScreenHeaderClock {
    time-format: "%R";
    horizontal-align: center;
}
 
LockScreen MLabelStyle#LockScreenHeaderClockLabel {
    font: $FONT_FAMILY_LIGHT 8.5mm;
    color: #ffffff;
}
 
LockScreen MLabelStyle#LockScreenHeaderClockLabel.Portrait {
    padding-right: 3mm;
    preferred-size: 54.mm 8.5mm;
    minimum-size: 54.mm 8.5mm;
    maximum-size: 54.mm 8.5mm;
}

LockScreen MLabelStyle#LockScreenHeaderClockLabel.Landscape {
    preferred-size: 85.4mm 8.5mm;
    minimum-size: 85.4mm 8.5mm;
    maximum-size: 85.4mm 8.5mm;
}
 
LockScreen DateStyle {
    date-format: "%a %e.%m";
    horizontal-align: center;
}
 
LockScreen MLabelStyle#DateLabel {
    font: $FONT_FAMILY normal 5mm;
    color: #ffffff;
}
 
LockScreen MLabelStyle#DateLabel.Portrait {
    padding-right: 3mm;
    preferred-size: 54.mm 5mm;
    minimum-size: 54.mm 5mm;
    maximum-size: 54.mm 5mm;
}
LockScreen MLabelStyle#DateLabel.Landscape {
    preferred-size: 85.4mm 5mm;
    minimum-size: 85.4mm 5mm;
    maximum-size: 85.4mm 5mm;
}
 

The Following User Says Thank You to MK99 For This Useful Post:
Ancelad's Avatar
Posts: 1,552 | Thanked: 3,108 times | Joined on Jun 2012 @ Russia, 96
#10
Also making theme for N9... Reboot-loops are inevitable... But I'm using backupmenu, so - no problems
 

The Following User Says Thank You to Ancelad For This Useful Post:
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 11:24.