Give linkhandler option to read from clipboard
This commit is contained in:
parent
d283f12ef9
commit
6d0ad93751
1 changed files with 5 additions and 0 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue