From: Colin P. McCabe <cmccabe@apache.org>
Date: Mon, 24 Mar 2025 19:10:51 +0000 (-0700)
Subject: open: associate .png with ristretto
X-Git-Url: http://club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f83dae5c1ffa447bb4168c06275b5f54ccfa11c1;p=cmccabe-bin

open: associate .png with ristretto
---

diff --git a/open b/open
index 0cb549a..c75829d 100755
--- a/open
+++ b/open
@@ -24,6 +24,7 @@ for f in "$@"; do
         *.gif) openwith "${f}" ristretto;;
         *.jpg) openwith "${f}" ristretto;;
         *.pdf) openwith "${f}" evince;;
+        *.png) openwith "${f}" ristretto;;
         *) openwith "${f}";;
     esac
 done