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
No known key found for this signature in database

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 if ! command -v open >/dev/null 2>&1 && command -v xdg-open >/dev/null 2>&1; then
alias open="xdg-open" alias open="xdg-open"
alias o="xdg-open"
fi fi
fi fi