feat(zsh): add open script

This commit is contained in:
winston 2023-07-28 23:47:27 +02:00
parent 5a597ed837
commit 904fe30b20
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -0,0 +1,4 @@
# vim:ft=zsh
function open() {
nohup xdg-open "$*" > /dev/null 2>&1
}