diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 | 
| commit | 2dab2233ef9cb54a3878e0120016d542045c7ee8 (patch) | |
| tree | 13f3f086adbe5edca4b0c6d3527bd040a50f627a /bin/guiscripts/osurftxt | |
| parent | 2a9d0908651ac236855fa515e14a83bada3ad7f9 (diff) | |
checkpoint
Diffstat (limited to 'bin/guiscripts/osurftxt')
| -rwxr-xr-x | bin/guiscripts/osurftxt | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/bin/guiscripts/osurftxt b/bin/guiscripts/osurftxt new file mode 100755 index 0000000..ef60166 --- /dev/null +++ b/bin/guiscripts/osurftxt @@ -0,0 +1,22 @@ +#!/bin/sh + +# open all links in txt file into one tabbed surf + +# dependencies: surf, osurf, dmenu + +# $1: file path for non interactive use +if [ -z "$1" ] +then  +	d="$HOME/dl/txtabs" +	f="$(find "$d" -type f -printf '%f\n' | dmenu)" +	[ "$f" ] || exit 1 +	f="$d"/"$f" +else +	[ -f "$1" ] || exit 1 +	f="$1" +fi + +winid="$(osurf "$(head -n 1 "$f")")" +tail -n +2 "$f" | while read -r url; +	do surf -e "$winid" "$url" & +	done  | 
