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. --- bsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsc') diff --git a/bsc b/bsc index 5ae3272..562eb53 100755 --- a/bsc +++ b/bsc @@ -21,5 +21,5 @@ esac done PROFILES=$(grep 'Path=' ~/.moonchild\ productions/basilisk/profiles.ini | cut -d'.' -f2) CHOSEN=$(echo "$PROFILES" | dmenu -l 15 -p "basilisk" ${ARG:+"$ARG"}) [ -z "$CHOSEN" ] && exit 2 -exec basilisk -P "$CHOSEN" "$URL" +exec basilisk -P "$CHOSEN" ${URL:+"$URL"} #}}} -- cgit v1.2.3