|
Revision 4526, 329 bytes
(checked in by erijo, 2 years ago)
|
|
Removed svn:keywords from all files that don't need it. May make your
checkout a tiny bit faster :)
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # A shell script to view a url using w3m and xterm |
|---|
| 4 | # Set the XTERM variable to where your xterm binary is and |
|---|
| 5 | # the W3M variable to where your w3m binary is or |
|---|
| 6 | # leave them as is if the binaries are in your path. |
|---|
| 7 | # |
|---|
| 8 | # Graham Roff, October 1999. |
|---|
| 9 | # |
|---|
| 10 | |
|---|
| 11 | XTERM=xterm |
|---|
| 12 | W3M=w3m |
|---|
| 13 | |
|---|
| 14 | ${XTERM} -title "Licq URL View" -e ${W3M} "$1" |
|---|