Questions tagged [feh]
feh is a lightweight image viewer
48 questions
2
votes
1
answer
151
views
Keyboard commands for magick
With feh I can do something like feh --on-last-slide quit --action1 "echo %f >> ilist.txt" $(ls -1 clocal/*.jpg) to look at the pictures and then perform some operation, depending on ...
0
votes
2
answers
495
views
How can I preview image data urls in linux (e.g. data:image/png;base64, <data>)?
I opened some json-based configuration file and I see that there is a favicon key whose value is a data url representing a png:
"favicon": "data:image/png;base64,iVBORw...
I am looking ...
0
votes
1
answer
236
views
feh on linux keeps looping despite of --cycle-once
I am using a le potato running raspbian, to display pictures on a screen. These pictures are in a shared folder I can access from my windows pc. The input is where the pictures go, and output is ...
1
vote
0
answers
3k
views
feh ERROR: Can't open X display. It *is* running, yeah?
Followed this tutorial to try and get a photo album running on my raspberry pi 3: https://pimylifeup.com/raspberry-pi-photo-frame/
Using feh to try and run DISPLAY=:0.0 XAUTHORITY=/home/pi/.Xauthority ...
2
votes
1
answer
211
views
How do I open multiple links using feh?
I'm writing a program that gets a bunch of images from Librex' API, then opens them in feh.
Here's the source:
args = sys.argv[1:]
for i in args:
if "-" in i:
args.remove(i)
sch =...
0
votes
1
answer
5k
views
Change window size to fit current image size with feh from CLI
I have read the feh manual but could not find a command line option to change window size to fit current image size :
$ qrencode -o- https://youtu.be/JrLYOJqe22U | feh --zoom 300 -
Can you help me ?
0
votes
4
answers
5k
views
Feh on auto start from rc.local ERROR: Can't open X display. It *is* running, yeah?
I'm trying to run my dotnet app from rc.local file. Where i start playing video(working) or show image slide show with feh player. If i run my scrip manually from bash is working how it' should.
When ...
0
votes
0
answers
1k
views
Editing images with feh
According to the feh man page:
--edit Enable basic editing of files. This makes rotation and mirroring (bound to "<", ">", "|", and "_" by default) ...
3
votes
1
answer
2k
views
How to present a slideshow with 'feh' with datestamp displayed on the photographs?
I want to show my photos in a slideshow and have the date displayed for each photograph. I tried it with feh, which is compiled with exif=1
I found --info and --drawexif but can't get it to work.
feh ...
2
votes
0
answers
762
views
Feh vertical flip all images in slideshow
I have a large dataset of images in a directory that I would like to view. feh -f works perfectly to quickly step through the images. The problem is that all the images are flipped upside down. While ...
0
votes
0
answers
163
views
Calling a function with feh
I can call an external script with feh, like so:
feh --action1 ';./renamepic.sh "$PWD/%F"' -F -Z "/Pictures/"
But how do I call a function inside the same scrip, something under those lines:
...
3
votes
2
answers
12k
views
How can I get feh to set wallpaper to each monitor according to its size?
I have a directory filled with png files
$ tree ~/wallpaper/
~/wallpaper/
├── foo--1366x768.png
├── foo--1920x1080.png
├── foo--2048x1080.png
├── foo--3440x1440.png
└── foo--3840x2160.png
0 ...
0
votes
1
answer
1k
views
Fake Transparency in URxvt Using ImageMagick in i3
The most popular way to set your background in i3 seems to be using feh, via something like:
exec_always feh --bg-fill /home/user/Pictures/wallpaper.jpg
in your ~/.config/i3/config file. Then, in ~/....
3
votes
1
answer
3k
views
How to display images on a grid which consist specific size (MxN) in FEH?
I have about 30 images (all images of the same size: 300x75) in a directory and would like to present them on a grid of size 5x6.
so far I have done it manually:
$ feh -i --thumb-width 300 --thumb-...
6
votes
6
answers
20k
views
How to permanently set default color of feh's background to black?
Whenever I open an image in feh, the background is set to the standard, dark gray and gray checkboard pattern like this:
As you can see, it's the checkboard background. How do I permanently change ...
2
votes
1
answer
4k
views
using full-screen mode with feh in dwm
When I try to run feh -F <images> in dwm, I do not have the ability to interact with the full-screen window via the keyboard; e.g., if I try to exit (q), nothing happens and the following is ...
1
vote
0
answers
580
views
feh: concurrent slideshow and montage modes
I have sets of images that are related and that I would like to view in parallel (e.g., images A1, A2, A3, etc. constitute a sequence and images B1, B2, B3, etc. constitute a related sequence). I ...
1
vote
1
answer
229
views
viewing a tiff stack as a movie in feh
How can a stack of images (.tif format) be viewed in feh as a slideshow? When I open such a file, only the first frame in the stack is displayed. The arrow keys do not allow cycling through the other ...
4
votes
3
answers
16k
views
Feh and i3-gaps not playing nicely
so I'm using exec_always feh --bg-scale *wallpaper* and it sets it correctly. I'm also using i3-gaps which can be found here. When I start setting my windows up, my wallpaper starts freaking out. I'm ...
1
vote
1
answer
1k
views
How to bind image deleting to a key in feh?
I have a problem in feh. When I hit 'CTRL+DELETE' the file is not deleted. Nothing happens at all (according to the manual it should remove the file from disk and from the filelist). If I hit just ...
1
vote
1
answer
2k
views
Pipe multiple files from curl to other program
I would like to download several images (from a server with a self-signed certificate) and view them all with feh. Is this possible with a single command? Something like curl -sk -b ...
6
votes
1
answer
4k
views
Bind key to custom script in feh
Is there a way in which I can bind a keypress to a custom script (say a bash script) in feh? From the manual I have found out through ~/.config/feh/keys I can reconfigure keys, but as far as I know ...
7
votes
1
answer
5k
views
feh: maintain zoom setting
When browsing through the images in a directory with feh, the magnification can be changed by use of the up/down arrow keys, but the setting is lost as soon as the next image in the series is loaded. ...
5
votes
0
answers
2k
views
Make feh notice newly plugged-in monitor for image scaling
I use my laptop with multiple monitor, I want feh to understand that a new monitor has plugged in and scale wallpaper image accordingly.
I use the following code, but when a new monitor is plugged in,...