maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Design (https://talk.maemo.org/forumdisplay.php?f=46)
-   -   Remove N9 Icon Labels (https://talk.maemo.org/showthread.php?t=90487)

ARJWright 2013-06-17 15:19

Remove N9 Icon Labels
 
Am wondering if anyone had been able to remove or hide the text labels for icons on the apps listing screen?

It's not an os that needs such labels imo. Given the Swype UI, losing the text labels seems like it would have been an option in there. Geek adding icon-initiated gestures also seems like a direction that could have been taken (for example, press and hold icon then swipe down to uninstall, press and swipe up to send to another's device the deb or link to download the app).

Just wondering

Wikiwide 2013-06-23 14:24

Re: Remove N9 Icon Labels
 
Agree. Maybe, I will look into which package is responsible from user interface on N9 - like hildon-home and hildon-desktop on N900.
Meanwhile, bumping this thread...
Best wishes.

Akkumaru 2013-06-23 15:57

I've asked this question before, and all I got was to remove each name from .desktop files one by one. Oh the pain...

MK99 2013-06-23 16:09

Re: Remove N9 Icon Labels
 
/usr/share/themes/base/meegotouch/meegotouchhome/style/meegotouchhome.css
Code:

SwipeLauncherButtonStyle {
    font: $FONT_XSMALL;
    text-color: transparent;


Akkumaru 2013-06-23 17:33

@MK99 is it normal to have the text to appear momentarily prior to pressing?

MK99 2013-06-23 17:54

Re: Remove N9 Icon Labels
 
Yes it is. You can make extra line to hide it.
Code:

SwipeLauncherButtonStyle:disabled {
    text-color: transparent;
    background-image: ;
}


Wikiwide 2013-06-23 23:26

Re: Remove N9 Icon Labels
 
By the way, would
Code:

display: none;
work? Then there would not be empty space under the icon, I guess...
Best wishes.

Akkumaru 2013-06-24 00:32

MK99, I'm not able to remove the text completely, if I did the code you gave me, it just removed the most right row, and if I try to rearrange icons, the icons will then disappear.

MK99 2013-06-24 07:25

Re: Remove N9 Icon Labels
 
1 Attachment(s)
@Wikiwide
Where to put that display: none; line?


/usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css
Code:

SwipeLauncherButtonStyle {
    text-color: transparent;

    margin-top: -1.5mm;
    padding-top: 1.7mm;

    minimum-size: 86 80;
    preferred-size: 86 80;
    maximum-size: 88 80;
    icon-size: 78 78;
}
SwipeLauncherButtonStyle:disabled {
    text-color: transparent;
}


Eminem 2013-06-24 07:55

Re: Remove N9 Icon Labels
 
How do you get it so tight between the icons?

Quote:

Originally Posted by MK99 (Post 1354342)
@Wikiwide
Where to put that display: none; line?


/usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css
Code:

SwipeLauncherButtonStyle {
    text-color: transparent;

    margin-top: -1.5mm;
    padding-top: 1.7mm;

    minimum-size: 86 80;
    preferred-size: 86 80;
    maximum-size: 88 80;
    icon-size: 78 78;
}
SwipeLauncherButtonStyle:disabled {
    text-color: transparent;
}



MK99 2013-06-24 08:23

Re: Remove N9 Icon Labels
 
Quote:

Originally Posted by Eminem (Post 1354346)
How do you get it so tight between the icons?

I just gave values​​.
Change them to the base or make a new css-file to the blanco.

Eminem 2013-06-24 08:26

Re: Remove N9 Icon Labels
 
Quote:

Originally Posted by MK99 (Post 1354350)
I just gave values​​.
Change them to the base or make a new css-file to the blanco.

Point me in the right direction? ;)

Akkumaru 2013-06-24 09:13

I can't get the text to disappear completely. Even with the extra line. Could you share the css file for this change, or just a snip of it? Thanks :)

MK99 2013-06-24 09:50

Re: Remove N9 Icon Labels
 
Run these as root:
1.
Code:

mkdir /usr/share/themes/blanco/meegotouch/meegotouchhome
2.
Code:

mkdir /usr/share/themes/blanco/meegotouch/meegotouchhome/style
3.
Code:

echo 'SwipeLauncherButtonStyle {
    text-color: transparent;

    margin-top: -1.5mm;
    padding-top: 1.7mm;

    minimum-size: 86 80;
    preferred-size: 86 80;
    maximum-size: 88 80;
    icon-size: 78 78;
}
SwipeLauncherButtonStyle:disabled {
    text-color: transparent;
}' >/usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css

4.
Code:

/sbin/initctl restart xsession/mthome

Akkumaru 2013-06-24 11:49

Sorry for bothering you MK99, but I'd like to revert back. Seems like there isn't any way to remove the temporarily transparent text

MK99 2013-06-24 11:57

Re: Remove N9 Icon Labels
 
Quote:

Originally Posted by Akkumaru (Post 1354383)
Sorry for bothering you MK99, but I'd like to revert back. Seems like there isn't any way to remove the temporarily transparent text

Yes, there is a way, we can make toggle to enable and disable text.
But at last tomorrow...

MK99 2013-06-25 07:34

Re: Remove N9 Icon Labels
 
2 Attachment(s)
If you like...

Copy .HSMod folder to MyDocs.
Include HScrMod.desktop-file and there is line:
Code:

Exec=/usr/bin/invoker --type=e /usr/bin/aegis-exec -s -u user -l "echo rootme | devel-su -c /opt/HSMod/HSMod1.sh"
Replace rootme to your own password.

Copy .HSMod folder to MyDocs.
Code:

sh /home/user/MyDocs/.HSMod/install.sh
Code:

sh/home/user/MyDocs/.HSMod/uninstall.sh

Akkumaru 2013-06-25 09:00

Re: Remove N9 Icon Labels
 
Yeah I see what you did, great for many people, but for me, I use the 4 column style, so it's a no go.

MK99 2013-06-25 09:13

Re: Remove N9 Icon Labels
 
1 Attachment(s)
Quote:

Originally Posted by Akkumaru (Post 1354561)
Yeah I see what you did, great for many people, but for me, I use the 4 column style, so it's a no go.


Here is HSMod for 4 column. ;)
Code:

minimum-size: 111 105;
    preferred-size: 114 105;
    maximum-size: 117 105;
    icon-size: 80 80;


Burlone 2013-06-25 10:16

Re: Remove N9 Icon Labels
 
I use fbd-original as the theme, I tried to change the destination of the file but I do not work, you can help me?

Akkumaru 2013-06-25 15:38

Re: Remove N9 Icon Labels
 
A problem after another, sorry :( Such a troublesome. Anyway,
now I have this: http://i.imgur.com/eoXdeZx.png

Here's my meeogtouchhome.css
http://pastebin.com/phTiUAtE

MK99 2013-06-25 19:04

Re: Remove N9 Icon Labels
 
@Akkumaru

Try these values:
Code:

MAbstractLayoutPolicyStyle#LauncherPageFlowLayoutPolicy.Portrait {
    vertical-spacing: 3.0mm;
    horizontal-spacing: 0.2mm;
}
 
MAbstractLayoutPolicyStyle#LauncherPageFlowLayoutPolicy.Landscape {
    vertical-spacing: 3.0mm;
    horizontal-spacing: 0.2mm;
}


MK99 2013-06-26 03:15

Re: Remove N9 Icon Labels
 
Quote:

Originally Posted by Burlone (Post 1354568)
I use fbd-original as the theme, I tried to change the destination of the file but I do not work, you can help me?

If you want to use my mod run this one-line command as root.
Code:

mv /usr/share/themes/fdb-original/meegotouch/meegotouchhome/style/meegotouchhome.css /usr/share/themes/fdb-original/meegotouch/meegotouchhome/style/meegotouchhome.css.orig && mv /usr/share/themes/fdb-original/meegotouch/libmeegotouchhome/style/libmeegotouchhome-default.css /usr/share/themes/fdb-original/meegotouch/libmeegotouchhome/style/libmeegotouchhome-default.css.orig
Back to default:
Code:

mv /usr/share/themes/fdb-original/meegotouch/meegotouchhome/style/meegotouchhome.css.orig /usr/share/themes/fdb-original/meegotouch/meegotouchhome/style/meegotouchhome.css && mv /usr/share/themes/fdb-original/meegotouch/libmeegotouchhome/style/libmeegotouchhome-default.css.orig /usr/share/themes/fdb-original/meegotouch/libmeegotouchhome/style/libmeegotouchhome-default.css

dex87 2013-07-21 17:25

Re: Remove N9 Icon Labels
 
1 Attachment(s)
People help! me

How do I remove duplicates in the app launcher?? : (
thank you!!!

Mikkosssss 2013-07-21 17:39

Re: Remove N9 Icon Labels
 
Delete duplicates from /usr/share/applications.

If I remember right theres option in N9QT if not here is code:


I have to check if filename is right I will edit that soon.

Edit: Filenames confirmet.

Edit2: Hmm if you have duplicates what are they named because first ones are those what that code removes, so it might be better to remove second ones

Edit3: Removed code because I think duplicates are in difrend location.

dex87 2013-07-21 18:15

Re: Remove N9 Icon Labels
 
3 Attachment(s)
it's really weird, I just figured out something ...
quick lauch icons are missing ... they are a miracle duplicates the desktop, premenstio them in a folder ...
please help me :( , here's a copy of the Applications*.desktop shortcuts...

Mikkosssss 2013-07-21 19:03

Re: Remove N9 Icon Labels
 
1 Attachment(s)
I see you have N9QT.

So try tweak OO -> 4

It says it should fix duplicated icons.


I think that your quicklaunch icons have somehow turned in desktop icons.

Do you have these files in /home/user/.local/applications/

dex87 2013-07-21 20:19

Woooooooooow awesome, thank u!!!!!!
Quick launch is usable again!

Thank u!


All times are GMT. The time now is 03:16.

vBulletin® Version 3.8.8