dotfiles/.i3blocks/internet

32 lines
553 B
Plaintext
Raw Normal View History

2018-03-06 18:49:41 +01:00
#!/bin/bash
color=""
if ! nmcli dev | grep " connecté" &>/dev/null
then
color="#515151"
if [ ! -f /dev/shm/claws_offline ]
then
claws-mail --offline
touch /dev/shm/claws_offline
fi
2020-01-09 21:17:01 +01:00
elif ping -c 1 2001:41d0:e:3cd::1 -W 1 &>/dev/null
2018-03-06 18:49:41 +01:00
then
color="#99CC99"
if [ -f /dev/shm/claws_offline ]
then
claws-mail --online
rm /dev/shm/claws_offline
fi
else
color="#F2777A"
if [ ! -f /dev/shm/claws_offline ]
then
claws-mail --offline
touch /dev/shm/claws_offline
color="#FFCC66"
fi
fi
2019-09-09 20:04:37 +02:00
echo "wan <span foreground=\"$color\">█</span>"