commit cbf3f9c579e8aa7e099b51a4b920022e7decfcba parent 2dd54ed5fd8cb3c35c81c7f17246cff7db676fcf Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe> Date: Fri, 20 May 2022 20:47:40 -0500 Disowning xdg-open process in bibopen Diffstat:
| M | linux/.local/bin/bibopen | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/linux/.local/bin/bibopen b/linux/.local/bin/bibopen @@ -7,5 +7,5 @@ key=$($HOME/.local/bin/bib/bibopen.pl $BIB| dmenu -i -l 20 | cut -d" " -f1) extensions="pdf djvu" for ext in $extensions; do file=$BIB_DATA/$key.$ext - [ -f $file ] && xdg-open $file && break + [ -f $file ] && { xdg-open $file & disown; } && break done