Viido projektori arvuti repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
301 B

#!/bin/bash
echo "Kodi starter"
while true;do
echo -e "HTTP/1.0 201 No Content\n\r\n\r" | nc -l 127.0.0.1 6969 > /dev/null
if [[ -z "$(ps aux | grep /usr/bin/kodi | grep -v grep)" ]]; then
echo "Starting kodi"
kodi &
else
echo "Kodi is already running"
fi
done