Search found 16 matches

by piskor
09 Jan 2018 18:44
Forum: General
Topic: Index of useful thread
Replies: 14
Views: 95379

Re: Index of useful thread

Excelent and very helpfull for all AM users. Thank You
Like it! :)
by piskor
16 Mar 2017 16:01
Forum: User Help / Bug Reports
Topic: { in string
Replies: 4
Views: 13404

Re: { in string

Thank you very much for explanation.
It works

BR, piskor
by piskor
09 Mar 2017 22:02
Forum: User Help / Bug Reports
Topic: { in string
Replies: 4
Views: 13404

Re: { in string

Hello Martin, In one of my flow I tried to execute root command: dumpsys batterystats | grep -m1 'Screen on:' | awk -F: '{print $2}' | awk -F" " '{print $1,$2}' but here AM also had problem with { sign and tried to interprets {print as some unknown variable For now I am using other command, but it w...
by piskor
28 Feb 2017 17:55
Forum: User Help / Bug Reports
Topic: Proper root acces
Replies: 1
Views: 6488

Re: Proper root acces

Hi

/system is mounted as read only filesystem by default
root browsers remount /system as r/w if they want to access files on it
In your flow you must remount /system as r/w, for example using action "Execute root command" with command:
mount -o remount,rw /system
by piskor
22 Feb 2017 11:51
Forum: General
Topic: Is there a way to check file / folder?
Replies: 8
Views: 23814

Re: Is there a way to check file / folder?

I am using AM since one month and i'm still learning and looking for best solutions :)
by piskor
22 Feb 2017 11:09
Forum: General
Topic: Is there a way to check file / folder?
Replies: 8
Views: 23814

Re: Is there a way to check file / folder?

Hi again :) I have found better and faster solution without need for another flow Use action "Execute command" with command: test -d /storage/emulated/0/DCIM && echo 1 || echo 0 stdout variable will be set to 1 if /storage/emulated/0/DCIM folder in this example is available or set to 0 if it is not ...
by piskor
21 Feb 2017 23:15
Forum: User Help / Bug Reports
Topic: Detect full-screen application
Replies: 3
Views: 10205

Re: Detect full-screen application

It's currently not possible to detect if an app is fullscreen. I have to check if there's even an API to detect this. I add it to the todo-list but I can not promise anything. Hi Martin I am looking for such feature too. I want to display overlay widget on the Statusbar position, but only when none...
by piskor
21 Feb 2017 20:12
Forum: User Help / Bug Reports
Topic: Ideal way to save flow backup
Replies: 2
Views: 8432

Re: Ideal way to save flow backup

Hello You can modify backup flow and store backups on external sd card and then copy it to PC You can always upload backup file to dropbox, ftp server or google drive http://automagic4android.com/en/help/components-actions#action_dropbox_upload_file http://automagic4android.com/en/help/components-ac...
by piskor
21 Feb 2017 11:55
Forum: General
Topic: Is there a way to check file / folder?
Replies: 8
Views: 23814

Re: Is there a way to check file / folder?

You can create new flow with file / folder availability check, and inside it set global variable to true if file / folder is available and then check this variable in first flow It should looks like this: First flow: Your trigger your commands "Execute flows": second_flow_with_file_availability_chec...
by piskor
21 Feb 2017 09:58
Forum: General
Topic: Is there a way to check file / folder?
Replies: 8
Views: 23814

Re: Is there a way to check file / folder?

Hi

Check, if trigger "File observer" with checked "Delete Self" event type suits your needs
http://automagic4android.com/en/help/co ... e_observer