This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/bin/clip

12 lines
243 B
Plaintext
Raw Normal View History

2020-01-29 15:17:18 -06:00
#!/usr/bin/env sh
2019-12-05 16:09:52 -06:00
2020-04-21 16:38:58 -05:00
# TODO: detect MIME type?
# can a `clip-once` script exist building on this?
# wl-copy `-o`, xclip `-l 1`?
2020-03-26 16:32:32 -05:00
if is_wayland; then
2020-04-21 16:38:58 -05:00
wl-copy -n wl-copy --trim-newline "$@"
2020-03-26 16:32:32 -05:00
else
2020-04-21 16:38:58 -05:00
xclip -i -sel p -f "$@" | xclip -i -sel c "$@"
2020-03-26 16:32:32 -05:00
fi