fanglingsu / vimb

Vimb - the vim like browser is a webkit based web browser that behaves like the vimperator plugin for the firefox and usage paradigms from the great editor vim. The goal of vimb is to build a completely keyboard-driven, efficient and pleasurable browsing-experience.
https://fanglingsu.github.io/vimb/
GNU General Public License v3.0
1.35k stars 100 forks source link

Downloading `blob:` file #778

Open machinedgod opened 1 month ago

machinedgod commented 1 month ago

Hello, how do I set up Vimb to use external download manager, and correctly download files what come with blob:// url? (blob files)

I am using uget and this is my current config setup:

set download-path="$HOME/Downloads/"
set download-use-external=true
set download-command=/bin/zsh -c "uget-gtk --folder=\"$VIMB_DOWNLOAD_PATH\" --http-referer=\"$VIMB_URI\" %s"

The link I provided explains how this would be done, but it seems like a "manual" approach - is there an "automatic" setup for the download-command?

cdlscpmv commented 4 weeks ago

Have you looked at handler-add in the man page?

machinedgod commented 4 weeks ago

Yes, I have couple of handlers set up already, but how would this be the way to go? I need more detailed instructions than what you offered.