summaryrefslogtreecommitdiff
path: root/ffc
diff options
context:
space:
mode:
Diffstat (limited to 'ffc')
-rwxr-xr-xffc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffc b/ffc
index b88c35b..fd004be 100755
--- a/ffc
+++ b/ffc
@@ -5,7 +5,7 @@ printhelp () {
printf "ffc: firefox 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 " -w ) use Wayland menu command (bemenu)\n"
printf " -x ) use X11 menu command (dmenu)\n"
exit
}
@@ -15,7 +15,7 @@ printhelp () {
while getopts "hwxd:u:" o; do case "${o}" in
d) DMENU_ARGS="$OPTARG" ;;
u) URL="$OPTARG" ;;
- w) DMENU="tofi" ;;
+ w) DMENU="bemenu" ;;
x) DMENU="dmenu" ;;
*) printhelp ;;
esac done
@@ -45,7 +45,7 @@ PROFILES="$NATIVE_PROFILES$INT$FLATPAK_PROFILES"
#}}}
#{{{ Choose Profiles
-CHOSEN=`printf "$PROFILES" | $DMENU $DMENU_ARGS`
+CHOSEN=`printf "$PROFILES" | $DMENU -p "firefox" -l 15 $DMENU_ARGS`
[ -z "$CHOSEN" ] && exit 2
if `echo "$CHOSEN" | grep -qE ' F$'`; then
exec flatpak run org.mozilla.Firefox -P `echo "$CHOSEN" | sed 's/ F$//'` $URL