aboutsummaryrefslogtreecommitdiff
path: root/home/dot_local/share/bin/executable_open
blob: d207dd12f33b362af351ce4e065b9bb80c53c9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh
case "$(file --mime-type -Lb "$1")" in
	text/*)
		exec $EDITOR -- "$@"
		;;
	*)
		for file in "$@"; do
			fork xdg-open "$file"
		done
		;;
esac