diff options
Diffstat (limited to '.config/uzbl/scripts/uzblcat')
-rwxr-xr-x | .config/uzbl/scripts/uzblcat | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.config/uzbl/scripts/uzblcat b/.config/uzbl/scripts/uzblcat deleted file mode 100755 index e955608..0000000 --- a/.config/uzbl/scripts/uzblcat +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python -# uzblcat - safely push html to uzbl -# See http://www.uzbl.org/wiki/html-mode - -from sys import stdin, stdout - -stdout.write("uri data:text/html,") -for line in stdin: - stdout.write(line[0:-1]) - -# vim: set noet ff=unix - |