From 3913571383d4715425398cdbf6cdc22246d73564 Mon Sep 17 00:00:00 2001 From: chrysn Date: Mon, 23 Aug 2021 13:10:24 +0200 Subject: [PATCH] .desktop file: Run pqiv --browse This ensures that people opening pqiv from the file manager can still access the rest of the files in the directory, as is common with image viewers. Contributes-To: https://github.com/phillipberndt/pqiv/issues/201 --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 7162cfb..c219d2f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -211,7 +211,7 @@ pqiv.desktop: $(HEADERS) echo "NoDisplay=true"; \ echo "Icon=emblem-photos"; \ echo "TryExec=$(PREFIX)/bin/pqiv"; \ - echo "Exec=$(PREFIX)/bin/pqiv %F"; \ + echo "Exec=$(PREFIX)/bin/pqiv --browse %F"; \ echo "MimeType=$(shell cat $(foreach BACKEND, $(sort $(BACKENDS)), $(SOURCEDIR)backends/$(BACKEND).mime) /dev/null | sort | uniq | awk 'ORS=";"')"; \ echo "Categories=Graphics;"; \ echo "Keywords=Viewer;" \