add a small optional section
This commit is contained in:
parent
9a81d916e5
commit
555b570d1d
13
sh/trss
13
sh/trss
|
@ -135,9 +135,18 @@ open_handler() {
|
|||
for i in $results; do
|
||||
url="$(printf "%s" "$i" | awk -F'\t' '{ print $3 }')"
|
||||
|
||||
echo "$url"
|
||||
|
||||
# on low power systems mpv can be expensive to run
|
||||
# have to figure out why it stutters so much more than the browser
|
||||
# case "$url" in
|
||||
# *youtube*)
|
||||
# mpv "$url"
|
||||
# ;;
|
||||
# *)
|
||||
# fire "$url" &
|
||||
# ;;
|
||||
# esac
|
||||
fire "$url" &
|
||||
|
||||
done
|
||||
IFS="$OLDIFS"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue