varietywalls / variety

Wallpaper downloader and manager for Linux systems
http://peterlevi.com/variety
GNU General Public License v3.0
1.12k stars 137 forks source link

Show source (directory) of an image #657

Open vmustin opened 8 months ago

vmustin commented 8 months ago

Using Variety v0.8.5

On a NAS I have stored all my pictures for decades in a directory structure with self-explanatory names. I would like to have the directory names displayed. Same feature is implemented in gPhotoShow for Windows.

ben2talk commented 7 months ago

I solved this for KDE.

variety --get grabs the image URL. I sent it to 'notify-send' but you could do whatever...

#!/bin/bash
variety --get > /tmp/variety-get.txt

while read -r image; do

notify-send "${image}"

done < /tmp/variety-get.txt

exit 0