From 30285bf323a5dc5b34879ef9d01172b55daaa139 Mon Sep 17 00:00:00 2001 From: zachir Date: Fri, 24 Feb 2023 10:30:08 -0600 Subject: overhaul browser menu scripts --- lwc | 39 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 36 insertions(+), 3 deletions(-) (limited to 'lwc') diff --git a/lwc b/lwc index 05aa370..ea504b0 100755 --- a/lwc +++ b/lwc @@ -1,22 +1,55 @@ #!/bin/sh + +#{{{ printhelp +printhelp () { + printf "lwc: librewolf menu interface.\n" + printf " -u URL ) pass URL to browser\n" + printf " -d ARGS ) pass ARGS to menu command\n" + printf " -w ) use Wayland menu command (tofi)\n" + printf " -x ) use X11 menu command (dmenu)\n" + exit +} +#}}} + +#{{{ getopts +while getopts "hwxd:u:" o; do case "${o}" in + d) DMENU_ARGS="$OPTARG" ;; + u) URL="$OPTARG" ;; + w) DMENU="tofi" ;; + x) DMENU="dmenu" ;; + *) printhelp ;; +esac done +#}}} + +#{{{ Native Profiles if [ -f ~/.librewolf/profiles.ini ]; then NATIVE_PROFILES=`grep 'Path=' ~/.librewolf/profiles.ini | cut -d'.' -f2` else unset NATIVE_PROFILES fi +#}}} + +#{{{ Flatpak Profiles if [ -f ~/.var/app/io.gitlab.librewolf-community/.librewolf/profiles.ini ]; then FLATPAK_PROFILES=`grep 'Path=' ~/.var/app/io.gitlab.librewolf-community/.librewolf/profiles.ini | cut -d'.' -f2 | sed 's/$/ F/g'` else unset FLATPAK_PROFILES fi +#}}} + +#{{{ Add Profiles if [ -n "$NATIVE_PROFILES" -a -n "$FLATPAK_PROFILES" ]; then INT="\n" fi PROFILES="$NATIVE_PROFILES$INT$FLATPAK_PROFILES" -CHOSEN=`printf "$PROFILES" | dmenu -l 15` +#}}} + +#{{{ Choose Profiles +CHOSEN=`printf "$PROFILES" | $DMENU $DMENU_ARGS` [ -z "$CHOSEN" ] && exit 2 if `echo "$CHOSEN" | grep -qE ' F$'`; then - exec flatpak run io.gitlab.librewolf-community -P `echo "$CHOSEN" | sed 's/ F$//'` "$@" + exec flatpak run io.gitlab.librewolf-community -P `echo "$CHOSEN" | sed 's/ F$//'` $URL else - exec librewolf -P "$CHOSEN" "$@" + exec librewolf -P "$CHOSEN" $URL fi +#}}} -- cgit v1.2.3