From 2bc5f8229702354ebdaba8b62ac7bd1e91eb029f Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 18 Sep 2025 09:26:20 -0500 Subject: Fix browser scripts with URL They were launching with "" as URL if none provided; now there is no arg if none is provided. --- fdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fdc') diff --git a/fdc b/fdc index 6d63ba5..8fc3bd0 100755 --- a/fdc +++ b/fdc @@ -21,5 +21,5 @@ esac done PROFILES=$(grep 'Path=' ~/.firedragon/profiles.ini | cut -d'.' -f2) CHOSEN=$(echo "$PROFILES" | dmenu ${ARG:+"$ARG"} -p "firedragon") [ -z "$CHOSEN" ] && exit 2 -exec firedragon -P "$CHOSEN" "$URL" +exec firedragon -P "$CHOSEN" ${URL:+"$URL"} #}}} -- cgit v1.2.3