dotfiles/bin/nnnedit

12 lines
160 B
Plaintext
Raw Normal View History

2022-09-24 07:59:11 +00:00
#!/bin/sh
MIMETYPE=$(xdg-mime query filetype "$1")
case "$MIMETYPE" in
image/*)
gimp "$1"
;;
*)
"$EDITOR" "$1"
;;
esac