#!/bin/bash
# dialuppp.sh (c) victor0000 2011
exec 4> >(zenity --notification --listen)
p=1;
t=0;
while true;
do
ppp=`ifconfig | grep "^ppp"`
if [ "$p" == "2" ]; then
sleep 1
let "t=t+1"
if [ "$t" == "45" ]; then
p=1
poff
continue
fi
if [ "$ppp" != "" ]; then
p=1
fi
echo "time $t";
continue
else
t=0
if [ "$ppp" == "" ]; then
echo "icon:warning" >&4
#отключение РРР к времени.
echo "message:отключение РРР к времени. :(" >&4
sleep 15
echo "message:Соединение 45 секунд, еcли идёт интернет. :)" >&4
pon Intertelecom
#sleep 15
p=2
continue
else
if [ "$p" == "1" ]; then
echo "icon:info" >&4
echo "message:Интернет идёт! :D" >&4
p=0
fi
fi
sleep .5
fi
done