View Single Post
Posts: 64 | Thanked: 117 times | Joined on Aug 2010
#772
Hi, first i'd like to thank you for this wonderful app and the great support.

Then for my question.

I've been thinking of making a script that displays a row of icons to indicate certain programs are still running.
I'd do this for apps that i often forget to turn off (example, noticing at work that a wifi remote app is still running uselessly since the evening before) or for apps that consume a lot of battery, as a reminder.

Example:
Code:
#!/bin/sh

check_process() {
  [ "$1" = "" ]  && return 0
  [ `pgrep -n $1` ] && return 1 || return 0
}
empty='<</home/user/billboard/icons/empty.png>>'
check_process "qremot"
[ $? -eq 0 ] && echo -n "$empty " || echo -n "<</home/user/billboard/icons/qremot-red.png>> "
check_process "camera-ui"
[ $? -eq 0 ] && echo -n "$empty " || echo -n "<</home/user/billboard/icons/camera-red.png>> "
The script displays a single row of icons.
I made all icons and the empty image the same size so they would be on the same location every time whether or not other apps are (in)active.
One could off course display different color icons depending if the app is active, instead of an empty image.


Now i'm wondering how often a script like this would be called, cause i wouldn't want it to use too much battery.


Also, how do i find the process names of apps?
In the example above, camera-ui is apparently not linked to the camera app, but a process that is always active.

Similarly i'd like to do such an icon for the 'ToggleWlanScan' app, to remind me when i've turned wlanscan off, but i don't think there's an active process involved. Is there a way to check whether this is active from billboard?

Last edited by SaiKo; 2013-04-01 at 02:04.