blob: 2e1230fd653bb5355eda57d55dd07e56af98e266 (
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>&- &
|