The Following User Says Thank You to nbedford For This Useful Post: | ||
|
2013-02-12
, 22:39
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1072
|
Great update, loving the new time selector
Any thoughts on adding a light theme to the ProfileMatic UI?
|
2013-02-12
, 22:44
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1073
|
The Following 5 Users Say Thank You to ajalkane For This Useful Post: | ||
|
2013-02-13
, 10:20
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#1074
|
sh -c "echo rootme | devel-su -c 'sh /home/user/MyDocs/auto-wall.sh'"
#!/bin/sh tmpFile=$(mktemp) wallpapers="/home/user/.wallpapers" files=$(find $wallpapers -type f > $tmpFile) total=$(cat "$tmpFile"|wc -l) randomNumber=$(($RANDOM%$total)) i=0 while read line; do if [ "$i" -eq "$randomNumber" ];then # Do stuff with file gconftool-2 -t string -s /desktop/meego/background/portrait/picture_filename "$line" break fi let i="$i+1" done < $tmpFile rm $tmpFile
|
2013-02-13
, 11:16
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#1075
|
|
2013-02-13
, 11:21
|
|
Posts: 491 |
Thanked: 299 times |
Joined on Jul 2012
@ Pordenone IT
|
#1076
|
|
2013-02-13
, 11:32
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1077
|
I noticed that sometimes Idle profile not work, don't understand why.
When I try my script with "TRY" button in the setting, it work perfectly, but when my phone in idle for 2 min (my idle profile) it not run the custom action WHY ?
The Following User Says Thank You to ajalkane For This Useful Post: | ||
|
2013-02-13
, 11:34
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#1078
|
The Following User Says Thank You to ajalkane For This Useful Post: | ||
|
2013-02-13
, 11:41
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#1079
|
It'd be nice, I hadn't noticed that difference between stock clock and this one. I can look a bit into it, if it's easy in QML I might be able to do it, but if it requires lots of work I guess I won't.
/*********************************** * Copyright 2012 Peter Pykäläinen * * * * This file is part of goViihde. * ***********************************/ // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5 import QtQuick 1.1 import QtMobility.feedback 1.1 HapticsEffect { id: errorRumbler attackIntensity: 0.0 attackTime: 250 intensity: 1.0 duration: 100 fadeTime: 250 fadeIntensity: 0.0 }
|
2013-02-13
, 11:54
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#1080
|
Can be a bug... the idle condition (like most conditions) was refactored quite a bit in version 2.0. If you can run ProfileMatic's daemon in terminal, and collect me the log around the time that happens, I might be able to see if it's a bug in ProfileMatic or something else.
Slarti had a similar issue, which reboot solved. In his logs I saw ProfileMatic launching the script correctly, but for some reason the script did not run.
The Following User Says Thank You to Schturman For This Useful Post: | ||
Any thoughts on adding a light theme to the ProfileMatic UI?