1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/contrib/clipboard/clip-wayland.sh
2023-05-13 12:35:14 +02:00

9 lines
124 B
Bash
Executable File

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