![]() |
2010-01-21
, 20:27
|
Posts: 14 |
Thanked: 0 times |
Joined on Jan 2010
@ Budapest
|
#132
|
![]() |
2010-01-21
, 20:32
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#133
|
![]() |
2010-01-21
, 21:16
|
Posts: 14 |
Thanked: 0 times |
Joined on Jan 2010
@ Budapest
|
#134
|
![]() |
2010-01-21
, 21:22
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#135
|
could be but I have no idea about SSH sorry this is my first Linux experience...
![]() |
2010-01-22
, 11:56
|
Posts: 2 |
Thanked: 6 times |
Joined on Jan 2010
@ Sweden
|
#136
|
#!/bin/bash PROFILE="$1" PROFILES=$(gconftool-2 --all-dirs /system/tweakr|cut -d'/' -f4) DBUSSET="dbus-send --print-reply --dest='com.nokia.profiled' /com/nokia/profiled com.nokia.profiled.set_value string:general string:\'%s\' string:\'%s\'" # check if profile exists okflag=0 for p in ${PROFILES} do if [ "${PROFILE}" == "$p" ]; then okflag=1 break fi done if [ ${okflag} -ne 1 ]; then echo "No such profile: ${PROFILE}" exit 1 fi # set tweakr profile gconftool-2 --set /system/tweakr/current-preset "${PROFILE}" --type=string &>/dev/null # set all values gconftool-2 -a /system/tweakr/Sleep|sed 's/^ //'|sed 's/ = /=/'|awk -F'=' "{cmd=sprintf(\"${DBUSSET}\", \$1, \$2);system(cmd)}" &>/dev/null # switch to profile general dbus-send --print-reply --dest='com.nokia.profiled' /com/nokia/profiled com.nokia.profiled.set_profile string:general &>/dev/null
![]() |
2010-01-22
, 12:08
|
Posts: 36 |
Thanked: 86 times |
Joined on Dec 2009
@ Helsinki, Finland
|
#137
|
The Following 3 Users Say Thank You to siovene For This Useful Post: | ||
![]() |
2010-01-22
, 18:36
|
Posts: 13 |
Thanked: 18 times |
Joined on Jan 2010
|
#139
|
![]() |
2010-01-22
, 19:27
|
Posts: 356 |
Thanked: 172 times |
Joined on Jan 2010
@ Canada
|
#140
|
If it's still of interest for anyone, I hacked together a small profile switching script based on siovene post
I have to go now but I will come back again...