Fix clipboard thing

This commit is contained in:
Daniel Flanagan 2020-04-07 15:47:54 -05:00
parent 3d5f7a5e9e
commit 2e513e0e80
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4

View file

@ -2,12 +2,9 @@
if is_wayland; then
# echo "Clip: YES. THIS IS WAYLAND SPEAKING." >&2
sed 's/^\s+//g' | wl-copy "$@"
sed 's/^\s+//g' | sed 's/\s+$//g' | wl-copy "$@"
echo "Your trimmed input was stored in all clipboards."
else
xclip -selection primary
xclip -selection primary -out | xclip -selection clipboard
xclip -selection primary -out | xclip -selection secondary
echo "Your input was stored in all clipboards."
xclip -selection clipboard
sleep 5 && killall xclip > /dev/null 2>&1 &
fi