From 4f4ac73ca3ef52ed626c13786fa561180778927d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 8 Apr 2020 11:24:43 +0100 Subject: [PATCH] Fix typo with launching app if not running --- bin/linux-toggle-app | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/linux-toggle-app b/bin/linux-toggle-app index 39c5e71..63744cc 100755 --- a/bin/linux-toggle-app +++ b/bin/linux-toggle-app @@ -100,8 +100,8 @@ main() { win_id="${target[1]}" if [ -z "$pid" ]; then - echo "$OPT_PROC not running, launching with: \"$OPT_PROC\"" - "$OPT_PROC" + echo "$OPT_PROC not running, launching with: \"$OPT_BIN\"" + "$OPT_BIN" else echo "$OPT_PROC instance found" focused_id="$(xdotool getactivewindow)"