Birte Friesel

Results 48 comments of Birte Friesel

I cannot reproduce the issue here. On a two-screen system with i3, nodm, and Debian Unstable, the following crontab entry correctly sets the wallpaper for each monitor. ``` * *...

Why don't you use one of feh's actions for that? You can set "feh --action5 'echo %F'" or similar in .feh/config and then press "5" (or any other binding for...

Hi! That's not possible at the moment. the slideshow delay is the delay between feh displaying image _n_ and feh starting to load image _n+1_, so the total slideshow duration...

Hi! @Ferada's answer sums it up pretty well. I'll leave this issue open for a few more days and consider it resolved if there's no further discussion. I have added...

true; however, replacing `strcmp` with `strcoll` would lead to inconsistencies: `--version-sort` is implemented with `strverscmp`, and there is no `strverscoll` function available. So `feh` would sort images as "f1 f2...

> Also if I left click in the Feh UI it scrolls through all the various wallpaper I have in "/home/foo/Wallpaper/", is this a correct action, I can either click...

I'm glad that feh works well for you. It looks like most of your use cases can be solved without patching the current feh version. Instead of `--draw-time`, you can...

Good point. Could you switch to strncmp so that it is consistent with the image/ check?

feh doesn't handle file formats itself. Instead, it relies on Imlib2 to provide loaders for different filetypes. There's an open [Imlib2 issue regarding JPEG2000 support](https://phab.enlightenment.org/T6744), so it might end up...

Hi! This is already possible with some shell scripting: ``` feh -L '%w %h %f' | awk '{ if ($1 > $2) { print $0 } }' | cut -d...