Merge branch 'viewsource' of https://github.com/paretje/qutebrowser into paretje-viewsource

This commit is contained in:
Florian Bruhin 2016-10-14 06:46:38 +02:00
commit f26aa9b383

View File

@ -24,9 +24,9 @@
# Caveat: Does not use authentication of any kind. Add it in if you want it to.
#
path=/tmp/qutebrowser_$(mktemp XXXXXXXX).html
path=$(mktemp --tmpdir qutebrowser_XXXXXXXX.html)
curl "$QUTE_URL" > $path
curl "$QUTE_URL" > "$path"
urxvt -e vim "$path"
rm "$path"