Notices


Reply
Thread Tools
Posts: 1,751 | Thanked: 844 times | Joined on Feb 2010 @ Sweden
#131
Originally Posted by derliebewolf View Post
Hi guys,

I used N9Tweak for a while and it worked fine. Somehow I installes QuickTewak the other day and my icon grid changed. I used to use the vaule "2" in the option "ico" and now the size of text and icons is as bevore (i.e. smaller than stock) but the grid changed to default value. The odd thing is that while the size will change accordingly, the grid allways stays the same. I even tried to use the reset option and apply the twaek again as well as uninstalling and reinstalling the tool but without luck.

Any ideas?
It's hard to say but probably because it changes the same files. Have you tried to run it from terminal to see if it show any errors?

Code:
sh /opt/n9tweak/n9tweak
__________________
You like what i do? Donate!

Make your desktop look awesome - use the AwOken Theme with the AwOken Icon Theme.

Add me on twitter @almehdin
Visit the swedish maemo/meego community forums
 
Posts: 56 | Thanked: 14 times | Joined on Jan 2012 @ Germany
#132
running it from terminal does not show up an error at all. The script just goes through it's process (e.g. ico -> 2) and nothing changes as before. Are there logs available?
 
Posts: 1,751 | Thanked: 844 times | Joined on Feb 2010 @ Sweden
#133
No, no logs.. when you used QTN9 it probably changed the file but it should not matter as when you do it again in n9tweak the file should be "corrected".

After you have enabled the "2" option.. could you do this command in terminal.
Code:
sed -n '830,841p' /usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css
And then copy the output here..
__________________
You like what i do? Donate!

Make your desktop look awesome - use the AwOken Theme with the AwOken Icon Theme.

Add me on twitter @almehdin
Visit the swedish maemo/meego community forums
 
Posts: 56 | Thanked: 14 times | Joined on Jan 2012 @ Germany
#134
well, there is no output. busybox just offering the next command prompt. tried both root and user (both via ssh)
 
Posts: 1,751 | Thanked: 844 times | Joined on Feb 2010 @ Sweden
#135
Originally Posted by derliebewolf View Post
well, there is no output. busybox just offering the next command prompt. tried both root and user (both via ssh)
That means this file are not created probably. If it already exist it does not get created of safety reasons. It also "controls" the landscape option. I do this by copying the full file from the base theme but it can also be done by just take the section for landscape. So if you didn't use n9tweak to enable landscape this could be the case.

To look the file you could:
Code:
cat /usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css
removing it would probably fix it:
Code:
rm /usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css
__________________
You like what i do? Donate!

Make your desktop look awesome - use the AwOken Theme with the AwOken Icon Theme.

Add me on twitter @almehdin
Visit the swedish maemo/meego community forums
 
Eminem's Avatar
Posts: 212 | Thanked: 184 times | Joined on May 2010 @ Sweden
#136
Originally Posted by AlMehdi View Post
New version out http://minus.com/mb5trtYJt#4

0.2-5 * Fixed white correction text
* Added change applauncher icon size
* Added change applauncher text color
* Added change applauncher text size
* Added stretched space to vkb
* Fixed lock-screen landscape
* Fixed a root ssh bug

Which settings exactly did you use to get the 5 rows of icons?
 
Posts: 1,751 | Thanked: 844 times | Joined on Feb 2010 @ Sweden
#137
Originally Posted by Eminem View Post
Which settings exactly did you use to get the 5 rows of icons?
First chose "ico" and then "2".
__________________
You like what i do? Donate!

Make your desktop look awesome - use the AwOken Theme with the AwOken Icon Theme.

Add me on twitter @almehdin
Visit the swedish maemo/meego community forums
 
Posts: 60 | Thanked: 9 times | Joined on Dec 2009 @ Chicago
#138
Originally Posted by AlMehdi View Post
First chose "ico" and then "2".
Where can one choose the 'ico'? Where is located?
 
Posts: 56 | Thanked: 14 times | Joined on Jan 2012 @ Germany
#139
Originally Posted by ROne21 View Post
Where can one choose the 'ico'? Where is located?
if you start teh script it lists all options. just type "ico" and press enter, then choose one of the available option for this. Need to enter root passwd later...
 
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#140
Hi Almehdin
Can you help me please.. I tried to add Adhoc at startup to my script. I edited a little you commands, but this not work..
This is your bkock:

Code:
    # Add adhoc at startup
    [Aa][Hh] )

        echo ""
        echo "This will add adhoc at startup"
        echo ""

    read -p "Enter A to activate/install, D to deactivate
or R to remove: " ADR
        echo ""
    read -p "Password: " -s PASSWORD
        case $ADR in
            [Aa] ) echo $PASSWORD | devel-su -c "echo '# Description of the script, mandatory
            description \"Allow Adhoc script\"

            # Author e-mail address, mandatory
            author \"salyavin@gokuraku.fcac.com\"

            # stop when xsession is stopped
            stop on stopping xsession

            # stdout to /dev/null, use \"console output\" to direct stdout to console (optional)
            console none

            # Start myapp as user
            exec /bin/echo 1 > /sys/devices/platform/wl1271/allow_adhoc' > /etc/init/apps/adhoc.conf" >/dev/null 
            ;;
            [Dd] ) echo $PASSWORD | devel-su -c "echo '# Description of the script, mandatory
            description \"Allow Adhoc script\"

            # Author e-mail address, mandatory
            author \"salyavin@gokuraku.fcac.com\"

            # stop when xsession is stopped
            stop on stopping xsession

            # stdout to /dev/null, use \"console output\" to direct stdout to console (optional)
            console none

            # Start myapp as user
            exec /bin/echo 0 > /sys/devices/platform/wl1271/allow_adhoc' > /etc/init/apps/adhoc.conf" >/dev/null
            ;;
            [Rr] ) echo $PASSWORD | devel-su -c 'rm /etc/init/apps/adhoc.conf'
            ;;            
        esac
        read -p "Done! Your change will be enabled after next reboot." end
    ;;
And this what I edited:

Code:
    [cC][cC] )
        echo "This will add adhoc at startup"
        echo ""
        echo "1. Activate"
        echo "2. Deactivate"
        echo "3. Remove"
        echo ""

       read -p "Choose from 1 to 3: " ANS
        echo ""
        case $ANS in
            1 ) echo '# Description of the script, mandatory
description "Allow Adhoc script"

# Author e-mail address, mandatory
author "salyavin@gokuraku.fcac.com"

# stop when xsession is stopped
stop on stopping xsession

# stdout to /dev/null, use "console output" to direct stdout to console (optional)
console none

# Start myapp as user
exec /bin/echo 1 > /sys/devices/platform/wl1271/allow_adhoc' > /etc/init/apps/adhoc.conf
/bin/echo 1 >/dev/null
;;
            2 ) echo '# Description of the script, mandatory
description "Allow Adhoc script"

# Author e-mail address, mandatory
author "salyavin@gokuraku.fcac.com"

# stop when xsession is stopped
stop on stopping xsession

# stdout to /dev/null, use "console output" to direct stdout to console (optional)
console none

# Start myapp as user
exec /bin/echo 0 > /sys/devices/platform/wl1271/allow_adhoc' > /etc/init/apps/adhoc.conf
/bin/echo 0 >/dev/null
;;
            3 ) rm /etc/init/apps/adhoc.conf ;;
            * ) read -p "Just answer from 1 to 3. Aborting!" end; continue ;;
        esac
      echo "Your changes will take effect after Reboot. You want to reboot now ?"
      echo " "
    read -p "Choose Y or N: " inputline
       echo " "

   for carattere in $inputline; do
    case $carattere in
        [Yy] ) echo "Your phone will reboot now!"
               echo " "
               sleep 2 && /sbin/reboot ;;

          [Nn] ) echo "You chose to NOT reboot."
                echo " "
  esac
 done;;

Both of them create a same file adhoc.conf in /etc/init/apps, but one guy who tested my version, said me this does not work.. I don't know why...
Thanks
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 15:13.