dotfiles/.bashrc.d/open.sh

6 lines
88 B
Bash

if ! command -v open >/dev/null 2>&1
then
function open {
gio open ${@:-.}
}
fi