forked from shaba/openuds
2159e0f29d
Fixed up & tuning of actor
10 lines
297 B
Bash
10 lines
297 B
Bash
#!/bin/sh
|
|
|
|
# Simple hack to wait for systray to be present
|
|
# Exec tool if not already runned by session manager
|
|
ps -ef | grep "$USER" | grep -v grep | grep -v UDSActorTool-startup | grep 'UDSActorTool' -q
|
|
# If not already running
|
|
if [ $? -eq 1 ]; then
|
|
sleep 5
|
|
exec /usr/bin/UDSActorTool
|
|
fi |