From 766c5d1e8b511da91bd4b08b02c6b267db5ecc7e Mon Sep 17 00:00:00 2001 From: David Celis Date: Sat, 13 Feb 2016 22:34:58 +0000 Subject: [PATCH] Use civil twilight, not astronomical twilight Signed-off-by: David Celis --- local/bin/update-wallpaper | 4 ++-- 1 file(s) changed, 2 insertion(s)(+), 2 deletion(s)(-) diff --git a/local/bin/update-wallpaper b/local/bin/update-wallpaper --- a/local/bin/update-wallpaper +++ b/local/bin/update-wallpaper @@ -74,10 +74,10 @@ logk # Parse results using jq -SUNRISE_START=$(echo $SUN_DATA | jq --raw-output ".results.astronomical_twilight_begin") +SUNRISE_START=$(echo $SUN_DATA | jq --raw-output ".results.civil_twilight_begin") SUNRISE_END=$(echo $SUN_DATA | jq --raw-output ".results.sunrise") SUNSET_START=$(echo $SUN_DATA | jq --raw-output ".results.sunset") -SUNSET_END=$(echo $SUN_DATA | jq --raw-output ".results.astronomical_twilight_end") +SUNSET_END=$(echo $SUN_DATA | jq --raw-output ".results.civil_twilight_end") log "Sunrise starts at $SUNRISE_START and ends at $SUNRISE_END" log "Sunrset starts at $SUNSET_START and ends at $SUNSET_END" -- tangled.sh