diff options
author | B. Watson <yalhcru@gmail.com> | 2015-08-12 04:30:10 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2015-08-12 04:30:10 -0400 |
commit | 4ef0f5708e20509e427c706acedff6a22bf0faaa (patch) | |
tree | d12262b419530f40a3ef7cd24998f047ed443ebf /help/urlm_wget_extensions | |
download | irssi-urlmanager-4ef0f5708e20509e427c706acedff6a22bf0faaa.tar.gz |
initial commit
Diffstat (limited to 'help/urlm_wget_extensions')
-rw-r--r-- | help/urlm_wget_extensions | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/help/urlm_wget_extensions b/help/urlm_wget_extensions new file mode 100644 index 0000000..ec87f9c --- /dev/null +++ b/help/urlm_wget_extensions @@ -0,0 +1,23 @@ + +Setting: URLM_WGET_EXTENSIONS (default: tar zip atr bas xex exe dcm car z gz torrent) + +Space-separated list of filename extensions. When /urlm_open is used on +a URL ending in one of these, the file will be downloaded with wget, +running in an irssi window. To disable wget, you may set this list to +an empty string, or use one of your defined browsers to open such files. + +If you want to use wget without running it in an irssi window, clear the +extension list, then define a browser like so: + +# download in background (no controlling terminal, no progress reports) +/urlm_add_browser dl:Download with wget:wget -b '%s' + +# download in new screen window (irssi must be running under GNU screen) +/urlm_add_browser dl:Download with wget:screen wget '%s' + +# download in new X window (irssi must be running under X) +/urlm_add_browser dl:Download with wget:xterm -e "wget '%s';echo 'press Enter to close window';read junk" + +Note that you may not define a browser tag as 'wget' (the examples above +all use 'dl' instead). + |