1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/contrib/clipboard/clip-wayland.sh

9 lines
124 B
Bash
Raw Normal View History

#!/bin/bash
trap exit SIGTERM SIGINT
while true
do
socat -u PIPE:$HOME/.config/elinks/clipboard.fifo EXEC:"wl-copy"
done