dotfiles/home/apps/zsh/functions/open
2023-09-20 18:46:22 +02:00

7 lines
141 B
Bash

# vim:ft=zsh
# exit early if we're on macOS
[[ $(uname) == "Darwin" ]] && return
function open() {
nohup xdg-open "$*" > /dev/null 2>&1
}