blob: b09a794ac4698408f91f66c23666dac7ccd8d3a8 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
if [ -z "$WAYLAND_DISPLAY" ]; then
xclip -o -selection clipboard | tmux load-buffer - && tmux paste-buffer
else
wl-paste --no-newline | tmux load-buffer - && tmux paste-buffer
fi
|