16 lines
341 B
Bash
Executable file
16 lines
341 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# TODO: detect MIME type?
|
|
# TODO: figure out how/why these programs "wait" -- can a `clip-once` script exist building on this?
|
|
# wl-copy `-o`, xclip `-l 1`?
|
|
|
|
if [ "$(uname)" == "Linux" ]; then
|
|
if is_wayland; then
|
|
wl-copy -n "$@"
|
|
else
|
|
xclip -i -sel c "$@"
|
|
fi
|
|
elif [ "$(uname)" == "Darwin" ]; then
|
|
pbcopy "$@"
|
|
fi
|