imv/files/imv
somini 38eee61beb Include support for imv-folder
This is a wrapper to open all images in a folder.

Includes:
- Script itself
- Man page
- Desktop file
- Necessary Makefile changes

Fix #223
2021-07-08 23:30:24 +01:00

7 lines
99 B
Bash
Executable file

#!/bin/sh
if [ -n "${WAYLAND_DISPLAY}" ]; then
exec imv-wayland "$@"
else
exec imv-x11 "$@"
fi