summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2016-07-14 11:23:17 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-07-14 12:23:53 +0200
commit3af7e93324d4fb8dbcb19f60eb7e7357fd350033 (patch)
tree9440da37ddb220251126f854a94db9f6735c6a06
parente1a0b51d843d8e0f148e8bac6b5a134fbb5c443c (diff)
add ff and ff.bz2 support in config.def.h
-rw-r--r--config.def.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 023f8cd..f66d121 100644
--- a/config.def.h
+++ b/config.def.h
@@ -49,5 +49,7 @@ static Shortcut shortcuts[] = {
};
static Filter filters[] = {
- { "\\.(png|jpg|gif)$", "2ff" },
+ { "\\.ff$", "cat" },
+ { "\\.ff.bz2$", "bunzip2" },
+ { "\\.[a-z0-9]+$", "2ff" },
};