dotfiles/home/apps/zsh/functions/open

8 lines
141 B
Text
Raw Normal View History

2023-07-28 23:47:27 +02:00
# vim:ft=zsh
2023-09-20 18:46:22 +02:00
# exit early if we're on macOS
[[ $(uname) == "Darwin" ]] && return
2023-07-28 23:47:27 +02:00
function open() {
nohup xdg-open "$*" > /dev/null 2>&1
}