feat(zsh): add short alias for xdg-open o

This commit is contained in:
Price Hiller 2023-11-20 09:31:21 -06:00
parent 4fa7b357cb
commit e250558e4f
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -57,6 +57,7 @@ if [[ "${OSTYPE}" == "linux-gnu"* ]]; then
if ! command -v open >/dev/null 2>&1 && command -v xdg-open >/dev/null 2>&1; then
alias open="xdg-open"
alias o="xdg-open"
fi
fi