#!/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>> "