| The Following 3 Users Say Thank You to benny1967 For This Useful Post: | ||
|
|
2009-12-14
, 21:55
|
|
|
Posts: 388 |
Thanked: 115 times |
Joined on Oct 2009
@ London, UK
|
#2
|
Following situation, not too unusual for me:
Battery is low, I can't charge, but I won't use the device anyway for some time. (Wonder when this happens? Well, I go to a cinema. Or I am in a fancy restaurant where cell phones are considered inappropriate.)
I want it to work afterwards, though, and I don't want to switch it off. So (depending on which device I have with me) I go through a couple of steps to switch off what I think consumes battery. I might choose offline mode, silent profile, I might want to close all running applications just in case one of them misbehaves, I shut down GPS if there is any on the device... and then lock the screen.
Now wouldn't it be nice if I could do all of this with one single click?
A "deep sleep"-application that would add one more button to where the profiles and presence settings are. Press it and all is done.
The application should have a configuration part, of course, so I can choose which parts of the device go down when I activate this mode. Someone might want to keep applications running, another user may want to keep GPS or wifi... just a list of things with checkboxes.
Is this already in the making somewhere (seems so obvious to me) or do I have to politely ask for it?
|
|
2009-12-14
, 22:04
|
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#3
|

), and closing all the apps on the screen... Possible, I guess - wmctrl gets a list, at least but you'd have to kill -9 'em to make sure that they'd all gone - we don't need no confirmation screens hanging around.
| The Following User Says Thank You to qwerty12 For This Useful Post: | ||
|
|
2009-12-14
, 22:07
|
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#4
|
Is this already in the making somewhere (seems so obvious to me) or do I have to politely ask for it?
|
|
2009-12-14
, 22:12
|
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#5
|
|
|
2009-12-14
, 22:42
|
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#6
|
#! /bin/sh
dbus-send --session --dest=com.nokia.profiled --type=method_call /com/nokia/profiled com.nokia.profiled.set_profile string:"silent"
dbus-send --system --dest=com.nokia.mce --type=method_call /com/nokia/mce/request com.nokia.mce.request.req_device_mode_change string:"offline"
wmctrl -l -p | grep -v hildon-home | grep -v hildon-status-menu | grep -v desktop | awk '{print $3}' | sort | uniq | while read p; do kill -9 $p; done
dbus-send --system --dest=com.nokia.mce --type=method_call /com/nokia/mce/request com.nokia.mce.request.req_tklock_mode_change string:"locked"
| The Following 5 Users Say Thank You to qwerty12 For This Useful Post: | ||
|
|
2009-12-14
, 22:52
|
|
|
Posts: 3,790 |
Thanked: 5,718 times |
Joined on Mar 2006
@ Vienna, Austria
|
#7
|

|
|
2009-12-14
, 22:57
|
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#8
|
| The Following User Says Thank You to qwerty12 For This Useful Post: | ||
|
|
2009-12-15
, 01:41
|
|
Posts: 152 |
Thanked: 41 times |
Joined on Dec 2009
@ Sydney
|
#9
|
|
|
2009-12-15
, 05:56
|
|
|
Posts: 2,142 |
Thanked: 2,054 times |
Joined on Dec 2006
@ Sicily
|
#10
|
Battery is low, I can't charge, but I won't use the device anyway for some time. (Wonder when this happens? Well, I go to a cinema. Or I am in a fancy restaurant where cell phones are considered inappropriate.)
I want it to work afterwards, though, and I don't want to switch it off. So (depending on which device I have with me) I go through a couple of steps to switch off what I think consumes battery. I might choose offline mode, silent profile, I might want to close all running applications just in case one of them misbehaves, I shut down GPS if there is any on the device... and then lock the screen.
Now wouldn't it be nice if I could do all of this with one single click?
A "deep sleep"-application that would add one more button to where the profiles and presence settings are. Press it and all is done.
The application should have a configuration part, of course, so I can choose which parts of the device go down when I activate this mode. Someone might want to keep applications running, another user may want to keep GPS or wifi... just a list of things with checkboxes.
Is this already in the making somewhere (seems so obvious to me) or do I have to politely ask for it?