From 49f3bfce56f7ba1e8447ce6cf4229f8f2cbb2e19 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 3 Aug 2022 17:34:44 +0200 Subject: Add url.sh --- url.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 url.sh diff --git a/url.sh b/url.sh new file mode 100755 index 0000000..e198399 --- /dev/null +++ b/url.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# vim: shiftwidth=4 tabstop=4 noexpandtab + +# constants +data_repo="${HOME}/.local/share/mydata" +data_rel="tables/urls.tsv" +data_abs="${data_repo}/${data_rel}" + +# check if data file exists +if ! [ -f "${data_abs}" ] +then + echo "Data file '""${data_abs}""' not found." + exit 1 +fi + +# check dependency and warn user if necessary +if ! which bemenu > /dev/null 2>&1 +then + echo 'You have to install bemenu.' + exit 1 +fi + +# check dependency and warn user if necessary +if ! which firefox > /dev/null 2>&1 +then + echo 'You have to install firefox.' + exit 1 +fi + +# let user select the URL +line="$(bemenu -l 10 < "${data_abs}")" +url="$(echo "${line}" | awk -F '\t' '{print $1}')" + +firefox "${url}" -- cgit v1.2.3-70-g09d2