We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tested on ubuntu 16.04 with gnome
line 51 should be printf $fileURL | xclip -selection "clip-board" instead of printf $fileURL | xclip -selection "clipboard" this fixed it for me
printf $fileURL | xclip -selection "clip-board"
printf $fileURL | xclip -selection "clipboard"
The text was updated successfully, but these errors were encountered:
and while i'm at it printf $fileURL should be either printf "%s" "$fileURL" or echo "$fileURL"
printf $fileURL
printf "%s" "$fileURL"
echo "$fileURL"
Sorry, something went wrong.
No branches or pull requests
tested on ubuntu 16.04 with gnome
line 51 should be
printf $fileURL | xclip -selection "clip-board"
instead of
printf $fileURL | xclip -selection "clipboard"
this fixed it for me
The text was updated successfully, but these errors were encountered: