varietywalls / variety

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

Show source (directory) of an image #657

Open vmustin opened 1 year ago

vmustin commented 1 year 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 11 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