dotfiles/bin/x-open

7 lines
125 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 "'$@'";;
*) xdg-open "$@";;
esac