blob: 6bf467a94296f6db52671dbabb6cfdf45412de5e (
plain)
1
2
3
4
5
6
|
#!/bin/sh
# I don't care about errors, I don't want to handle errors, just shut up please.
# I don't understand nohup, may be useful in the future
# https://wiki.archlinux.org/title/default_applications
xdg-open "$@" 0<&- >&- 2>&1 &
|