Add open alias for xdg-open

This commit is contained in:
David Heinemeier Hansson
2025-06-25 16:41:15 -07:00
parent 2c1c32e9aa
commit 0bc5eefc7b

View File

@ -15,6 +15,9 @@ zd() {
z "$@" && printf " \U000F17A9 " && pwd || echo "Error: Directory not found"
fi
}
open() {
xdg-open "$@" >/dev/null 2>&1
}
# Directories
alias ..='cd ..'