-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/share/applications/*.desktop | ||
/src/deps.mk | ||
/src/*.o | ||
/src/*.inc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
git HEAD | ||
* Add --keep-zoom-vp option to keep zoom and offsets when switching | ||
images (patch by sdaau). Press 'k' to toggle it. | ||
* Add --sort mtime option (patch by guns) | ||
* Add a desktop file (installed to share/applications/feh.desktop) | ||
|
||
Mon, 24 Dec 2012 15:45:54 +0100 Daniel Friesel <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
include ../../config.mk | ||
|
||
SOURCES = ${shell echo *.pre} | ||
TARGETS = ${SOURCES:.pre=.desktop} | ||
|
||
all: ${TARGETS} | ||
|
||
.pre.desktop: | ||
sed \ | ||
-e 's/\$$VERSION\$$/${VERSION}/g' \ | ||
-e 's/\$$DATE\$$/'"$$(date '+%B %d, %Y')"/g \ | ||
-e 's/\$$MAN_CURL\$$/${MAN_CURL}/' \ | ||
-e 's/\$$MAN_DEBUG\$$/${MAN_DEBUG}/' \ | ||
-e 's/\$$MAN_EXIF\$$/${MAN_EXIF}/' \ | ||
-e 's/\$$MAN_XINERAMA\$$/${MAN_XINERAMA}/' \ | ||
-e 's:\$$IMAGEDIR\$$:${image_dir}:' \ | ||
< ${@:.desktop=.pre} > $@ | ||
|
||
clean: | ||
rm -f *.1 | ||
|
||
.SUFFIXES: .pre .desktop | ||
|
||
.PHONY: clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Name=Feh | ||
Comment=Fast Imlib2-based Image Viewer | ||
Exec=feh %f | ||
Terminal=false | ||
Type=Application | ||
Icon=$IMAGEDIR$/logo.svg | ||
Categories=Graphics;2DGraphics;Viewer; | ||
MimeType=image/bmp;image/gif;image/jpeg;image/jpg;image/pjpeg;image/png;image/tiff;image/x-bmp;image/x-pcx;image/x-png;image/x-portable-anymap;image/x-portable-bitmap;image/x-portable-graymap;image/x-portable-pixmap;image/x-tga;image/x-xbitmap; | ||
Name[en_US]=feh |