dotfiles/bin/x-open

7 lines
142 B
Plaintext
Raw Normal View History

#!/bin/sh
case $(uname -r) in
2021-07-31 10:03:58 +00:00
*microsoft*) powershell.exe -noprofile start-process "'$@'";;
2021-08-27 03:30:50 +00:00
*) exo-open "$@" 1>/dev/null 2>&1;;
esac