From 144bf65410acf7d3d0fbe61c37bc71bf500972ea Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 14 Feb 2023 14:34:46 +0100 Subject: up --- .local/bin/conky/weather.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to '.local/bin/conky/weather.sh') diff --git a/.local/bin/conky/weather.sh b/.local/bin/conky/weather.sh index 273825c..b724fb6 100755 --- a/.local/bin/conky/weather.sh +++ b/.local/bin/conky/weather.sh @@ -2,17 +2,14 @@ os=$(cat /tmp/os) -case $os in - 1) +case "$(hostname -s)" in + mother | po-rbo) ping -c1 -w1 1.1.1.1 >/dev/null 2>&1 || exit ;; - 2) - ping -c1 -w1 1.1.1.1 >/dev/null 2>&1 || exit - ;; - 3) + fbsd-tp) ping -c1 -t1 1.1.1.1 >/dev/null 2>&1 || exit ;; esac -echo 'WEATHER ${hr} -${font2}${color #ebdbb2}${alignc}${exec curl wttr.in/Lyon?T0 --silent --max-time 3}${font}' +echo '${font1}WEATHER ${hr} +${font2}${color #ebdbb2}${alignc}${execi 1800 curl wttr.in/Lyon?T0 --silent --max-time 3}${font}' -- cgit v1.2.3