From b442bb9e2c6757dd5bdce113add7da6cd8a1b30c Mon Sep 17 00:00:00 2001 From: Sebastian Schulze Date: Fri, 1 Oct 2021 10:04:09 +0200 Subject: [PATCH] [bin] Open up pdf and ps files as well as tex --- bin/executable_xdg-open | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/executable_xdg-open b/bin/executable_xdg-open index 861b11a..eaf460a 100644 --- a/bin/executable_xdg-open +++ b/bin/executable_xdg-open @@ -19,7 +19,7 @@ case "${lower%%:*}" in *.html|http|https) exec firefox "$1" ;; - *.pdf) + *.ps|*.eps|*.pdf) exec zathura "$1" ;; *.gif|*.mp4) @@ -31,7 +31,7 @@ case "${lower%%:*}" in atom) exec atom "$1" ;; - *.md|mailto) + *.tex|*.md|mailto) exec em "$1" ;; *)