summaryrefslogtreecommitdiff
path: root/mut/bin/xdg-open
blob: f401d16c559cd6cd295bd75141dc1fcd92f5e8da (plain)
1
2
3
4
5
#!/bin/bash
case "$(file --mime-type $1 | awk '{print $2}')" in
  text/*|application/json) exec "$EDITOR" $1 ;;
  *) nu --commands "^echo $1 | nc 127.0.0.1 1994 | echo" ;;
esac