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. --- mbc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mbc') diff --git a/mbc b/mbc index 0ab9db9..4578f77 100755 --- a/mbc +++ b/mbc @@ -32,5 +32,5 @@ PROFILES="$NATIVE_PROFILES" #{{{ Choose Profiles CHOSEN=$(printf "%s" "$PROFILES" | dmenu -l 15 -p "mullvad-browser" ${ARG:+"$ARG"}) [ -z "$CHOSEN" ] && exit 2 -exec mullvad-browser -P "$CHOSEN" "$URL" +exec mullvad-browser -P "$CHOSEN" ${URL:+"$URL"} #}}} -- cgit v1.2.3