Give linkhandler option to read from clipboard

This commit is contained in:
krisdoodle45 2022-06-06 20:58:12 +02:00 committed by GitHub
parent d283f12ef9
commit 6d0ad93751
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,11 @@
# if a music file or pdf, it will download,
# otherwise it opens link in browser.
# If -c passed, read from clipboard
while getopts 'c' o; do case "${o}" in
c) set "$(xclip -o)";;
esac done
# If no url given. Opens browser. For using script as $BROWSER.
[ -z "$1" ] && { "$BROWSER"; exit; }