![]() |
2010-07-24
, 15:29
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#2
|
description "Locks da phone" start on started hildon-desktop console none script run-standalone.sh /usr/bin/dbus-send --system --type=method_call --dest=com.nokia.system_ui /com/nokia/system_ui/request com.nokia.system_ui.request.devlock_open string:'com.nokia.mce' string:'/com/nokia/mce/request' string:'com.nokia.mce.request' string:'devlock_callback' uint32:'3' end script service
#!/bin/sh #set +x monitor() { run-standalone.sh dbus-monitor --system type='signal',path='/com/nokia/mce/signal',interface='com.nokia.mce.signal',member='devicelock_mode_ind' | awk '/string "/ {print $2; fflush() }' | { while read line; do if echo $line | grep -q ":"; then DBUS_MONITOR_PID=$(echo $line | sed s/\"//g) fi if grep -q "unlocked"; then kill $(run-standalone.sh dbus-send --system --print-reply=literal --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.GetConnectionUnixProcessID string:$DBUS_MONITOR_PID | awk '{print $2; fflush()}') exit 0 fi done } } main() { # SLIDE_STATE=`cat /sys/devices/platform/gpio-switch/slide/state` # if [ x"$SLIDE_STATE" = "xopen" ]; then # exit 0 # fi /usr/sbin/waitdbus system local result=$(/usr/bin/run-standalone.sh /usr/bin/dbus-send --print-reply=literal --system --type=method_call --dest=com.nokia.system_ui /com/nokia/system_ui/request com.nokia.system_ui.request.devlock_open string:'com.nokia.mce' string:'/com/nokia/mce/request' string:'com.nokia.mce.request' string:'devlock_callback' uint32:'3' | awk '{print $2}') if [ x"$result" = "x1" ]; then monitor fi } main
![]() |
2010-07-24
, 16:47
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#4
|
Is there a way to manually set the lock time to say 24 hours or more by using xterm?
![]() |
2010-07-24
, 17:00
|
Posts: 1,224 |
Thanked: 1,763 times |
Joined on Jul 2007
|
#5
|
The Following User Says Thank You to Matan For This Useful Post: | ||
![]() |
2010-07-24
, 21:55
|
Posts: 8 |
Thanked: 7 times |
Joined on Jul 2010
|
#6
|
![]() |
2010-07-25
, 07:45
|
Posts: 22 |
Thanked: 22 times |
Joined on Jul 2010
|
#7
|
start on startup stop on starting hildon-desktop console none pre-start script /usr/bin/gconftool -s -t bool /system/osso/dsm/locks/devicelock_autolock_enabled true end script pre-stop script /usr/bin/gconftool -s -t bool /system/osso/dsm/locks/devicelock_autolock_enabled false end script service
![]() |
2011-08-03
, 05:48
|
Posts: 140 |
Thanked: 20 times |
Joined on Apr 2011
|
#8
|
![]() |
2011-08-03
, 05:58
|
Posts: 65 |
Thanked: 8 times |
Joined on Jul 2010
|
#9
|
This is great stuff!
Is is possible to have the device lock with SMS? Like in Symbian, you could preset a secret text and upon sending it to the phone it would lock.
Also the qwerty12 suggestion in Hack#1 that worked: could someone please explain in plain language what to do in steps? Thanks in advance!
I know that the N900 can be set to lock after 5, 10, 30, or 60 minutes, or not lock at all, but I can't figure out how to make it only lock at startup. If I disable autolock, it never asks for the lock code. Is this even possible? I know it was on the N800.
Thanks,
Ian