maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Nokia N9 / N950 (https://talk.maemo.org/forumdisplay.php?f=51)
-   -   [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.8.8 (https://talk.maemo.org/showthread.php?t=80600)

Schturman 2013-07-02 13:14

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Hmm... weird... You should get output: 18168368
Now try this:
Code:

wget "http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb" --spider --server-response -O - 2>&1
you should get this output:
Code:

RM696-21-3_PR_001:~# wget "http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb" --spider --s
erver-response -O - 2>&1
--16:11:54--  http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb
          => `-'
Resolving dl.dropboxusercontent.com... 50.17.230.108
Connecting to dl.dropboxusercontent.com|50.17.230.108|:80... connected.
HTTP request sent, awaiting response...
  HTTP/1.1 200 OK
  accept-ranges: bytes
  cache-control: max-age=0
  Content-length: 18168368
  Content-Type: application/x-debian-package
  Date: Tue, 02 Jul 2013 13:11:45 GMT
  etag: 2419n
  pragma: public
  Server: nginx
  x-dropbox-request-id: a275c90d0197e7a6
  X-RequestId: 9ef64b62d1fa3b49b625e381cbf24d8a
  x-robots-tag: noindex,nofollow
  x-server-response-time: 1186
  Connection: keep-alive
Length: 18,168,368 (17M) [application/x-debian-package]
200 OK

RM696-21-3_PR_001:~#


stony999 2013-07-02 13:29

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by thedead1440 (Post 1356127)
stony999,

Try the same in an opensh or ariadne shell as root on the N9 does not give all the required caps.

I tried it with opensh and it worked!

Thank you very much for your help.

I am am new to meego, and some things are a bit difficullt, e.g. finding the right repositories, getting actual information, but this forum really helped me.

lablueboy 2013-07-02 14:23

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Hello it's me again.. Got the same response

BusyBox v1.20.0.git (MeeGo 3:1.20-0.2+0m8) built-in shell (ash)
Enter 'help' for a list of built-in commands.

~ # wget "http://dl.dropboxusercontent.com/u/17
706605/n9-qtweakall_9.7.8_armel.deb" --spider -
-server-response -O - 2>&1
--22:22:02-- http://dl.dropboxusercontent.com/u/1....7.8_armel.deb
=> `-'
Resolving dl.dropboxusercontent.com... 54.225.153.84
Connecting to dl.dropboxusercontent.com|54.225.153.84|:80... connected.
HTTP request sent, awaiting response...
HTTP/1.1 200 OK
accept-ranges: bytes
cache-control: max-age=0
Date: Tue, 02 Jul 2013 14:21:58 GMT
etag: 2419n
pragma: public
Server: nginx
x-dropbox-request-id: 715c95a829b81139
X-RequestId: 6cfd60183c6ed8f7a41958d07cd157a6
x-robots-tag: noindex,nofollow
x-server-response-time: 1172
Connection: keep-alive
Content-Type: application/x-debian-package
Content-Length: 18168368
Length: 18,168,368 (17M) [application/x-debian-package]
200 OK

~ #


edit: tried again the code previously... length should be 'L'ength.... Case sensitive.. And it returned with what you said.. 18168368

Schturman 2013-07-02 14:40

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
It's not a really the same content.. I found a differences, look this is my:
Content-length: 18168368
and this is your:
Content-Length: 18168368
In your output the word Length with BIG "L" and in my output it with small "l".
This is a reason the the full command not show the output for you...
Why it written for you with this big L I don't know :(
Try to reinstall wget:
Code:

apt-get update
apt-get install --reinstall wget

and run this command again:
Code:

wget "http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb" --spider --server-response -O - 2>&1
, if still get the same: Content-Length (with big "L") to fix it in the N9QT, run this command as ROOT:
Code:

sed -i -e 's/Content-length/Content-Length/g' /opt/N9QTweak/Tweaks/downloader*
After this command all tweaks that use downloader should work ;)

PS. Please tell me which repos you have installed? Files from this folder:
Code:

/etc/apt/sources.list.d
via this command:
Code:

ls -l /etc/apt/sources.list.d

lablueboy 2013-07-02 15:01

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
How do i reinstall wget? Just updated i think since the devel mode first init is recent. Anyway ill try to update. Just dont know how. :D anyway. My repos are from meecatalog 3 popular repos, just edited everything to skeiron. Omg thanks for looking into my problem. Im sorry for the hassle. Im new to linux meego environment.


edit: i reinstalled wget but still same version and same problem. Just made the edit of downloader* and now it works fine!! But what if there's an update? Would it overwrite my downloader files? If so, is there a command which disregards the uppercase lowecase? :D. And lastly, thank you very much! I will donate when i save cash from my allowance ;) more power to you!

Schturman 2013-07-02 15:07

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
look again into my previous post...

PS. don't forget to show outputs..

lablueboy 2013-07-02 15:27

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356230)
look again into my previous post...

PS. don't forget to show outputs..

~ $ ls -l /etc/apt/sources.list.d
total 16
-rw-r--r-- 1 root root 222 May 27 2012 aegis.ssu-keyring-005.list
-rw-r--r-- 1 user root 359 Jun 27 15:15 meecatalog.list
-rw-r--r-- 1 root root 22 May 27 2012 osa.list
-rw-r--r-- 1 root root 64 Jun 26 17:07 sdk.list
~ $

Schturman 2013-07-02 15:34

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Ok try this ONE-LINE command:
Code:

mv -f /etc/apt/sources.list.d/meecatalog.list /etc/apt/sources.list.d/meecatalog.list.disabled && apt-get update && apt-get install --reinstall wget
Just copy/paste and press enter.
After this:
Code:

wget "http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb" --spider --server-response -O - 2>&1
Just copy/paste and press enter.

Show me both outputs...

turbovomit 2013-07-02 17:59

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Sorry, but i can't install apk games from N9QT, games are in /home/user/MyDocs/Apkenv with the good name.
I can use them from terminal.

What am i doing wrong ?

What is the command line to install games ?

lablueboy 2013-07-02 18:13

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
ok.. wait.. my phone is being used as wifi hotspot atm... and is just outside my window. hahaha low signal here in my apartment. thanks for your support man. :)

lablueboy 2013-07-02 18:16

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Code:

~ # mv -f /etc/apt/sources.list.d/meecatalog.li
st /etc/apt/sources.list.d/meecatalog.list.disa
bled && apt-get update && apt-get install --rei
nstall wget
Get: 1 exec:////usr/bin/osa --packages
0% [1 exec:////usr/bin/osa --packages 0B] [WaiQNetworkReplyImpl::_q_startOperation was calledmore than once
Ign http://harmattan-dev.nokia.com harmattan/sdk Release.gpg
Hit https://downloads.maemo.nokia.com ./ Release.gpg
Ign http://harmattan-dev.nokia.com harmattan/sdk/free Translation-en_GB
Ign http://harmattan-dev.nokia.com harmattan/sdk/non-free Translation-en_GB
Hit http://harmattan-dev.nokia.com harmattan/sdk Release
Ign http://harmattan-dev.nokia.com harmattan/sdk/free Packages/DiffIndex
Ign http://harmattan-dev.nokia.com harmattan/sdk/non-free Packages/DiffIndex
Ign http://harmattan-dev.nokia.com harmattan/sdk/free Packages
Ign http://harmattan-dev.nokia.com harmattan/sdk/non-free Packages
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Hit http://harmattan-dev.nokia.com harmattan/sdk/free Packages
Hit http://harmattan-dev.nokia.com harmattan/sdk/non-free Packages
Hit https://downloads.maemo.nokia.com ./ Release.gpg
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Hit https://downloads.maemo.nokia.com ./ Release.gpg
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Hit https://downloads.maemo.nokia.com ./ Release
Hit https://downloads.maemo.nokia.com ./ Release
Hit https://downloads.maemo.nokia.com ./ Release
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Ign https://downloads.maemo.nokia.com ./ Packages
Ign https://downloads.maemo.nokia.com ./ Packages
Ign https://downloads.maemo.nokia.com ./ Packages
Hit https://downloads.maemo.nokia.com ./ Packages
Hit https://downloads.maemo.nokia.com ./ Packages
Hit https://downloads.maemo.nokia.com ./ Packages
Fetched 153kB in 17s (8,932B/s)
Updating desktop entries... Done
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be upgraded:
  wget
1 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 2 not upgraded.
Need to get 0B/622kB of archives.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 51009 files and directories currently installed.)
Preparing to replace wget 1.10.2-2osso3 (using.../wget_1.10.2-2osso3_armel.deb) ...
Unpacking replacement wget ...
aegis-installing wget (from 'com.nokia.maemo')
Setting up wget (1.10.2-2osso3) ...
Updating desktop entries... Done
~ # wget "http://dl.dropboxusercontent.com/u/17
706605/n9-qtweakall_9.7.8_armel.deb" --spider -
-server-response -O - 2>&1
--02:12:34--  http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb
          => `-'
Resolving dl.dropboxusercontent.com... 54.243.214.162
Connecting to dl.dropboxusercontent.com|54.243.214.162|:80... connected.
HTTP request sent, awaiting response...
  HTTP/1.1 200 OK
  accept-ranges: bytes
  cache-control: max-age=0
  Date: Tue, 02 Jul 2013 18:12:29 GMT
  etag: 2419n
  pragma: public
  Server: nginx
  x-dropbox-request-id: 95e38d2f1dcf35cf
  X-RequestId: 04d2c31a0658c45d97f35f922d36c4b7
  x-robots-tag: noindex,nofollow
  x-server-response-time: 1119
  Connection: keep-alive
  Content-Type: application/x-debian-package
  Content-Length: 18168368
Length: 18,168,368 (17M) [application/x-debian-package]
200 OK

~ #

there it is. Still the same. :0

Schturman 2013-07-02 18:46

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Thanks... It so weird why you get this output from wget and most of the people another...
Ok, fix manually like I said before, just run this ONE-LINE command as root:
Code:

mv -f /etc/apt/sources.list.d/meecatalog.list.disabled /etc/apt/sources.list.d/meecatalog.list && sed -i -e 's/Content-length/Content-Length/g' /opt/N9QTweak/Tweaks/downloader*
Now go to tweak UU and try to reinstall N9QT from here. Show all outputs.

Schturman 2013-07-02 19:00

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by turbovomit (Post 1356282)
Sorry, but i can't install apk games from N9QT, games are in /home/user/MyDocs/Apkenv with the good name.
I can use them from terminal.

What am i doing wrong ?

What is the command line to install games ?

More details please...
What you did, show output from the tweak, how you can use them from terminal if tweak not installed. Do you installed something else from another place like Apkenv thread ? etc...

Lirion 2013-07-02 20:13

Hey Schturman,

There is a bug at Powerpack and m4asupport installation. Basicly unzip (from powerbusybox) does not known the -u option in your script:

Basicly
PowerPack packages downloaed successfully...
unzip: invalid option -- 'u'
BusyBox v1.21.0 (1.21.0power1+harmattan0) multi-call binary.

Usage: unzip [-lnopq] FILE[.zip] [FILE]... [-xFILE...] [-d DIR]

Schturman 2013-07-02 20:42

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
No.. It not have any problem... Probably the problem its locally on your device. Look into my output:
Code:

Choose numbers separated by 1 space: 10

Install/Uninstall m4a-ogg-flv support
For Exit, just press Enter...

Open mode or Inception required !

Internet connection required !

1. Install
2. Uninstall

Choose 1 or 2: 1

 WAIT until it finish process !!!

WAIT! Downloading needed packages...
Calculating download size ...
Downloading 3839661 bytes (3.66 Mb)
[========================================] 100%

m4asupport packages downloaded successfully...

Installing packages...
Do not continue unless you fully trust the package you are about to install.

Password for 'root':
Package gstreamer0.10-ffmpeg has package signature (origin 'com.nokia.maemo')
Package liboil0.3 has package signature (origin 'com.nokia.maemo')
(Reading database ... 43109 files and directories currently installed.)
Preparing to replace liboil0.3 0.3.17-2 (using/var/tmp/inception/pkg_RU2trX) ...
Unpacking replacement liboil0.3 ...
Preparing to replace gstreamer0.10-ffmpeg 0.10.9-2maemo2 (using /var/tmp/inception/pkg_yvwjsL) ...
Unpacking replacement gstreamer0.10-ffmpeg ...
aegis-installing liboil0.3 (from 'com.nokia.maemo')
aegis-installing gstreamer0.10-ffmpeg (from 'com.nokia.maemo')
Setting up liboil0.3 (0.3.17-2) ...
Processing triggers for applauncherd-launcher ...
Setting up gstreamer0.10-ffmpeg (0.10.9-2maemo2) ...

m4asupport installed successfully.

Try to reinstall unzip package..

PS. I have unzip package installed before i installed PP and busybox-power.

lablueboy 2013-07-03 00:49

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
It installed ok using UU... But....


DF instruction not here! Open PDF downloader..
For Exit, just press Enter...

---------------------------------------------
| N9 QuickTweak PDF downloader |
---------------------------------------------
| A: English PDF instruction |
| B: Russian PDF instruction |
| C: Both PDF instructions |
---------------------------------------------
| D: PDF file with links ONLY ! |
---------------------------------------------
After applying you will find PDF file in your:
/home/user/MyDocs/Documents

Choose a letter: a

WAIT! Downloading PDF instruction...
Calculating download size ...
/opt/N9QTweak/Tweaks/downloader0.sh: line 15: + : syntax error: operand expected (error tokenis "+ ")
Downloading bytes (0.00 Mb)

cp: can't stat 'N9_QuickTweak_en*': No such file or directory


still uses Length.. And update has overwritten the downloaders. Haha. :D

edmong 2013-07-03 03:15

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Thank you Schturman it's a great tool and very useful with my N9. Not sure if it will be possible and will it allow us to tweak 'wazapp' to enlarge the font size of it? and the menu of notifications? Hope I am not asking too much. Really thanks to your great work:)

Schturman 2013-07-03 04:56

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
lablueboy, yep.. After update you need run this command again...
Code:

sed -i -e 's/Content-length/Content-Length/g' /opt/N9QTweak/Tweaks/downloader*
I think I found a way how it will work for users like you. I will add checking command like this:
Code:

wget "http://dl.dropboxusercontent.com/u/17706605/n9-qtweakall_9.7.8_armel.deb" --spider --server-response -O - 2>&1 | grep 'Content*.*th' | cut -d ':' -f1 | sed 's/ //g'

edmong
, sorry, I don't think.... I don't use wazapp (never installed) and don't know how to do this.

Schturman 2013-07-03 06:26

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Version 9.7.8 repackaged and reuploaded :D
* Fixed downloading problem that some users have.

To update use tweak UU.

PeterSmurffiPan 2013-07-03 06:53

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Slightly off topic and I'm sorry for that but I've always gotten help here :)

Is there a way to exctract/export the Private calendar appointments from the N9 or is there a way to change the calendar appointments from Private to Exhange so that I can sync them with outlook?

I've googled this but nothing has come up (except for manually teadious solutions).

Thank You in advance!

Best Regards,
Peter

Garp 2013-07-03 15:18

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356418)
Version 9.7.8 repackaged and reuploaded :D
* Fixed downloading problem that some users have.

To update use tweak UU.

Try to install PP from HH but:
Aegis rejecting *deb Could not open debian archive
aegis aborting dpkg -- all listed package files rejected
Compilation failed in require
Failed to install PowerPack:confused::confused:

can't remember/find command in terminal to see if Open mode?:o

Schturman 2013-07-03 16:01

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Do you have inception installed and activated or open mode ?
Are you connected to internet ?
Post a full output...

Garp 2013-07-03 16:17

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356540)
Do you have inception installed and activated or open mode ?
Are you connected to internet ?
Post a full output...

I should have both inception and open mode but I don't know/remember how to see if activated?

There are commands in terminal to see but I can't remember/find?

Trying to reinstall inception from EE but it closes down - last time rebooted too!

Schturman 2013-07-03 16:38

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Open mode:
Code:

accli -I | grep open > /dev/null
Inception:
Code:

dpkg-query -W -f='${Status}\n' inception-bin | grep installed | awk '{print $3}' | head -1

Garp 2013-07-03 16:48

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356559)
Open mode:
Code:

accli -I | grep open > /dev/null
Inception:
Code:

dpkg-query -W -f='${Status}\n' inception-bin | grep installed | awk '{print $3}' | head -1


~ $ dpkg-query -W -f='${Status}\n' inception-bin | grep installed | awk '{print
$3}' | head -1
installed
~ $ accli -I | grep open
Current mode: open

~ $ accli -I | grep open > /dev/null
~ $

Garp 2013-07-03 17:08

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
System packages MODs
For Exit, just press Enter...

Internet connection required !

Options:
1. Busybox-power installer
2. PowerPack installer

Choose numbers separated by 1 space: 2

PowerPack installer.
For Exit, just press enter...

1. Install (v0.2.1)
2. Uninstall

Choose 1 or 2: 1

WAIT until it finish process !!!

WAIT! Downloading needed packages...
Calculating download size ...
Downloading 9192118 bytes (8.77 Mb)
[========================================] 100%

PowerPack packages downloaded successfully...
unzip: invalid option -- 'u'
BusyBox v1.21.0 (1.21.0power1+harmattan0) multi-call binary.

Usage: unzip [-lnopq] FILE[.zip] [FILE]... [-xFILE...] [-d DIR]

Extract FILEs from ZIP archive

-l List contents (with -q for short form)
-n Never overwrite files (default: ask)
-o Overwrite
-p Print to stdout
-q Quiet
-x FILE Exclude FILEs
-d DIR Extract into DIR


Installing packages...
Aegis rejecting *.deb: Could not open debian archive
aegis aborting dpkg -- all listed package files rejected
Compilation failed in require.
Failed to install PowerPack! Exiting...

Thanks for using my script !
Schturman

Choose T for Tweak menu, R for Reboot, F forFull Refresh, M for Middle Refresh, S for Soft Refresh, B to restart BME or Enter for exit:

Schturman 2013-07-03 17:17

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
You have problem with unzip package. Please reinstall it and try again.

Garp 2013-07-03 17:30

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356572)
You have problem with unzip package. Please reinstall it and try again.

Have tried several times. Last time I removed old PowerPack.zip files from MyDocs too but still the same output!:confused:

Stupid question but what else to do, I have removed Faster N9 before trying to install PowerPack due to your earlier statement
http://talk.maemo.org/showthread.php?t=87047&page=17 #169!
:rolleyes:

Schturman 2013-07-03 17:43

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
How you reinstalled unzip package ? And which version it reinstalled ?
Show me output...
or do it directly:
Code:

dpkg -i /opt/N9QTweak/SYS/unzip*

Garp 2013-07-03 17:54

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356578)
How you reinstalled unzip package ? And which version it reinstalled ?
Show me output...
or do it directly:
Code:

dpkg -i /opt/N9QTweak/SYS/unzip*


~ # dpkg -i /opt/N9QTweak/SYS/unzip*
Vælger tidligere fravalgt pakke unzip.
(Læser database ... 94248 filer og kataloger installeret i øjeblikket.)
Udpakker unzip (fra .../SYS/unzip_6.0-5_armel.deb)...
aegis-installing unzip (from '')
Sætter unzip (6.0-5) op...
Behandler udløsere for applauncherd-launcher ...
~ #

Schturman 2013-07-03 17:57

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
ok, now try again tweak with PP or first try reboot..

Garp 2013-07-03 17:58

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356581)
ok, now try again tweak with PP or first try reboot..

OK running thank you!:) Success reboot:D Even wazapp working:), now to Faster N9, Yep 1.1.5 working, Thanks:p

Schturman 2013-07-03 19:39

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
i will add reinstallation of unzip after installation of busybox-power. Probably busybox-power override unzip file that can't read flag "-u" for some users.
Weird, but i itself not have this problem..

Garp 2013-07-03 20:15

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356600)
i will add reinstallation of unzip after installation of busybox-power. Probably busybox-power override unzip file that can't read flag "-u" for some users.
Weird, but i itself not have this problem..

just for your info I haven't used Busybox-power installer now.

Schturman 2013-07-03 20:58

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
From your log from this post:
http://talk.maemo.org/showpost.php?p...postcount=7057
You have busybox-power installed. Don't know when and how you installed it, but you did it before PP.

Garp 2013-07-03 21:38

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356624)
From your log from this post:
http://talk.maemo.org/showpost.php?p...postcount=7057
You have busybox-power installed. Don't know when and how you installed it, but you did it before PP.

Yes you are right of course and if that's the main issue then just forget my comment!:)

Schturman 2013-07-03 23:56

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Guys, do you want that auto-background changer will NOT change background at night from 01am until 06am ? It will show message "Night here! Sleeping... Waiting for another circle..." or something like this.

MK99 2013-07-04 03:48

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356657)
Guys, do you want that auto-background changer will NOT change background at night from 01am until 06am ? It will show message "Night here! Sleeping... Waiting for another circle..." or something like this.

Would it be possible, that the changer will work only at night. Or to a selected time, for example at 5:00 am? ;)

Schturman 2013-07-04 05:46

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
You can do it easily via profilematic (explained in pdf):
Code:

sh -c "echo rootme | devel-su -c 'sh /opt/N9QTweak/Autowall/auto-back2.sh'"
Change rootme To your root pass.
;)

MK99 2013-07-04 06:23

Re: [Announce] N9/50 QuickTweak app (for PR1.3 only) - v9.7.8
 
Quote:

Originally Posted by Schturman (Post 1356678)
You can do it easily via profilematic (explained in pdf):
Code:

sh -c "echo rootme | devel-su -c 'sh /opt/N9QTweak/Autowall/auto-back2.sh'"
Change rootme To your root pass.
;)

Profilematic installed, a lot has changed since the half year. :p


All times are GMT. The time now is 10:41.

vBulletin® Version 3.8.8