![]() |
2010-09-02
, 11:55
|
|
Posts: 188 |
Thanked: 185 times |
Joined on Dec 2009
@ Finland
|
#2
|
The Following User Says Thank You to tuminoid For This Useful Post: | ||
![]() |
2010-09-02
, 11:57
|
|
Posts: 601 |
Thanked: 549 times |
Joined on Mar 2010
@ Redditch, UK
|
#3
|
![]() |
2010-09-02
, 12:27
|
Posts: 489 |
Thanked: 404 times |
Joined on Dec 2009
|
#4
|
I would like to have a button on my desktop, which i can press and that will switch between General and Silent mode (No need to change the vibration settings)
This would avoid me taking the 5 click way to switch profiles.
I just want a button which I can press, and turns the phone into silent, and if I press it again, it turns it into General.
Is this possible?
if [ `dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_profile | awk 'NR==2 {print $2}'` = '"silent"' ] ; then dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"general" ; else dbus-send --type=method_call --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.set_profile string:"silent" ; fi
![]() |
2010-09-02
, 14:35
|
Posts: 377 |
Thanked: 68 times |
Joined on Dec 2009
|
#5
|
![]() |
2010-09-02
, 14:49
|
Posts: 489 |
Thanked: 404 times |
Joined on Dec 2009
|
#6
|
The Following User Says Thank You to torpedo48 For This Useful Post: | ||
This would avoid me taking the 5 click way to switch profiles.
I just want a button which I can press, and turns the phone into silent, and if I press it again, it turns it into General.
Is this possible?