|
2016-09-11
, 22:39
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#102
|
Lipstick freeze workaround
I do also encounter UI freezes from time to time (once a day seems accurate and NOT during calls). My workaround is the Powermenu2 app in combination with a launcher I created, which basically restarts the lipstick UI. So when the screen is 'on' I can simply 'long press' the power button and lipstick will restart.
Install Powermenu2 from from openrepos.net. 2.0.1.11 Taalojärvi users like me need version 1.0.7-1 (https://openrepos.net/sites/default/...-1.armv7hl.rpm)
I use the nano editor ...
Create the launcher fileCode:devel-su pkcon install nano
Content of liprestart.desktopCode:nano .local/share/applications/liprestart.desktop
Create the 'scripts' directoryCode:[Desktop Entry] Type=Application Name=Run LipRestart Icon=icon-launcher-component-gallery Exec=/home/nemo/.local/scripts/liprestart.sh Comment=Terminal application
Create a file liprestart.shCode:mkdir .local/scripts
Content of liprestart.shCode:nano .local/scripts/liprestart.sh
Make it liprestart.sh executableCode:#!/bin/bash systemctl --user restart lipstick
In the Powermenu2 app, you can now bind 'event3' to the launcher you created and bind the 'long press (display on)' option to 'event3'.Code:chmod +x .local/scripts/liprestart.sh
|
2016-09-11
, 23:10
|
Posts: 97 |
Thanked: 318 times |
Joined on Feb 2012
@ Switzerland
|
#103
|
|
2016-09-12
, 05:00
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#104
|
|
2016-09-12
, 05:17
|
Posts: 635 |
Thanked: 1,535 times |
Joined on Feb 2014
@ Germany
|
#105
|
The Following User Says Thank You to mautz For This Useful Post: | ||
|
2016-09-12
, 06:13
|
Posts: 635 |
Thanked: 1,535 times |
Joined on Feb 2014
@ Germany
|
#106
|
The Following User Says Thank You to mautz For This Useful Post: | ||
|
2016-09-12
, 08:47
|
Posts: 288 |
Thanked: 1,103 times |
Joined on Jul 2014
|
#107
|
Anyone had success on rooting sfdroid? I'm using Sailfish as my secondary rom with multiboot. Enabling Root in the developer options did not work and flashing supersu with twrp also doesn't give me root access in sfdroid? Any hints?
|
2016-09-12
, 09:15
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#108
|
The Following User Says Thank You to m4r0v3r For This Useful Post: | ||
|
2016-09-12
, 09:28
|
Posts: 635 |
Thanked: 1,535 times |
Joined on Feb 2014
@ Germany
|
#109
|
Can you provide a logcat log when you try accessing a root-enabled app?, and when trying to enable root in the developer options?
I'll have a look into it but after I've done the other sfdroid thing I'm working on
The Following User Says Thank You to mautz For This Useful Post: | ||
|
2016-09-12
, 10:24
|
Posts: 288 |
Thanked: 1,103 times |
Joined on Jul 2014
|
#110
|
Here is the cat log after enabling root in developer options:
http://pasted.co/2226222d
And here after starting AdAway:
http://pasted.co/5d292d7f
Thank you.
The Following User Says Thank You to nh1402 For This Useful Post: | ||
Tags |
hammerhead, nexus5, sailfishos, sfdroid |
|
I do also encounter UI freezes from time to time (once a day seems accurate and NOT during calls). My workaround is the Powermenu2 app in combination with a launcher I created, which basically restarts the lipstick UI. So when the screen is 'on' I can simply 'long press' the power button and lipstick will restart.
Install Powermenu2 from from openrepos.net. 2.0.1.11 Taalojärvi users like me need version 1.0.7-1 (https://openrepos.net/sites/default/...-1.armv7hl.rpm)
I use the nano editor ...