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

Enhanced control. #664

Closed ben2talk closed 6 months ago

ben2talk commented 7 months ago
variety 0.8.11-1

I use Variety with some Mouse Gestures. Thus I can do 'next, prev, move to favourites, trash' from a gesture:

2023-12-07 11:43:27

Issue

Sometimes I wish to slightly edit (Vignette/blur) a wallpaper before moving it to favourites to keep my conky visible.

I must click the tray icon (which I prefer hidden) to open a file.

Describe the solution you'd like variety -o to open a file.

ben2talk commented 6 months ago

Ok, solutions for this:

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

while read -r line; do

gwenview "${line}"

done < /tmp/variety-get.txt

exit 0
gimp $(variety --get)

Hmmm, better solution ;)