From e8c1f8c78ea2bcf7bda3522ed32616127c4b9a59 Mon Sep 17 00:00:00 2001 From: jelinekb Date: Sun, 19 Jun 2022 16:34:18 -0400 Subject: [PATCH] Removed outer subprocess call (...) due to vlc throwing ""qobject::~QObject" Timers cannot be stopped from another thread run in background", which prevented immediate return to the command prompt. --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index bb0a3bf..89241cf 100644 --- a/Examples.md +++ b/Examples.md @@ -140,7 +140,7 @@ f() { fi # Store the arguments from fzf - arguments=("$(fzf --multi)") + arguments="$(fzf --multi)" # If no arguments passed (e.g. if Esc pressed), return to terminal if [ -z "${arguments}" ]; then