From 71ceefd54af79ac51049ced6ad683ccacfeb990a Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Wed, 11 Mar 2020 12:51:47 +0000 Subject: [PATCH] Removes earth background script - now part of background script --- bin/.bin/earthBackground | 57 ---------------------------------------- 1 file changed, 57 deletions(-) delete mode 100755 bin/.bin/earthBackground diff --git a/bin/.bin/earthBackground b/bin/.bin/earthBackground deleted file mode 100755 index e73a7605..00000000 --- a/bin/.bin/earthBackground +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env bash - -NOTIFY="FALSE" -IMAGE="RANDOM" - -function get_random_slug(){ - curl -s "https://earthview.withgoogle.com/" | hq 'a.intro__explore' attr href -} - -function notification(){ - notify-send "$( jq -r '.name' /tmp/backgroundinfo.json)" -} - -function set_random_image(){ - set_specific_image "$slug" -} - -function download_image(){ - if [ "$IMAGE" == "RANDOM" ]; then - local slug=$(get_random_slug) - else - local slug="$IMAGE" - fi - curl -s "https://earthview.withgoogle.com/_api${slug}.json" > /tmp/backgroundinfo.json - image=$( jq -r '.photoUrl' /tmp/backgroundinfo.json ) - curl -s -o /tmp/background.jpg "$image" -} - -function set_image(){ - download_image - if command -v nitrogen > /dev/null; then - nitrogen --set-zoom-fill /tmp/background.jpg - elif command -v nitrogen > /dev/null; then - feh --bg-fill /tmp/background.jpg - else - echo "No wallpaper tools found" - fi - if [ "$NOTIFY" == "TRUE" ]; then - notification - fi -} - -while [ -n "$1" ]; do - case "$1" in - "--notify") - NOTIFY="TRUE" - shift - ;; - "--only-notify") - notification - shift - exit 0 - ;; - esac -done - -set_image