diff options
author | xyz <gky44px1999@gmail.com> | 2021-09-23 21:14:16 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-09-23 21:14:16 -0700 |
commit | fdcce350a48bc6de17ad2d4a68b361019aaa4a09 (patch) | |
tree | a712967637e147b05c6701545752244ee59aaed0 /.local/bin/o | |
parent | 33891b84d7760349b8ecf0a77ded20c2f304df38 (diff) |
o, xdg-open wrapper
Diffstat (limited to '.local/bin/o')
-rwxr-xr-x | .local/bin/o | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/o b/.local/bin/o new file mode 100755 index 00000000..6bf467a9 --- /dev/null +++ b/.local/bin/o @@ -0,0 +1,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 & |