0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00
Files
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