dotfiles/bin/nnnedit
2023-01-14 10:29:22 +08:00

14 lines
144 B
Bash
Executable File

#!/bin/sh
case "$1" in
*.jpg)
*.jpeg)
*.png)
*.gif)
gimp "$1"
;;
*)
"$EDITOR" "$1"
;;
esac