From dbb0f26ea820ee7d495ad0d73a9802de6c6eabe6 Mon Sep 17 00:00:00 2001 From: Daniel Tsvetkov Date: Mon, 29 Apr 2019 19:02:02 +0200 Subject: [PATCH] for xfce --- apod.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apod.sh b/apod.sh index 43c5d0e..682b3f1 100755 --- a/apod.sh +++ b/apod.sh @@ -3,9 +3,13 @@ NASA_APOD_BASE_URL="https://apod.nasa.gov/apod" IMAGE_URL=`curl -s $NASA_APOD_BASE_URL/astropix.html | grep -oh 'href="image/.*"' | grep -oh 'image/.*jpg' | head -1` if [ -z "$IMAGE_URL" ]; then # gsettings set org.gnome.desktop.background picture-uri "file:///home/pi2/Pictures/wallpapers/blue_galaxy_wallpaper.png" - feh --randomize --bg-fill /home/pi2/Pictures/wallpapers/* + xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitoreDP-1/workspace0/last-image --set /home/pi2/Pictures/wallpapers/blue_galaxy_wallpaper.png + xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitorHDMI-2/workspace0/last-image --set /home/pi2/Pictures/wallpapers/blue_galaxy_wallpaper.png + # feh --randomize --bg-fill /home/pi2/Pictures/wallpapers/* else curl -s "$NASA_APOD_BASE_URL/$IMAGE_URL" > image.jpg # gsettings set org.gnome.desktop.background picture-uri "file:///$(pwd)/image.jpg" - feh --bg-fill "$(pwd)/image.jpg" + xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitoreDP-1/workspace0/last-image --set "$(pwd)/image.jpg" + xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitorHDMI-2/workspace0/last-image --set "$(pwd)/image.jpg" + # feh --bg-fill "$(pwd)/image.jpg" fi