dotfiles/tools/clipboard

8 lines
174 B
Bash
Executable File

#!/usr/bin/env bash
read contents
if [[ -x `which wl-copy > /dev/null 2>&1` ]]; then
echo "$contents" | wl-copy
else
echo "$contents" | xclip -selection clipboard
fi