mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
9 lines
124 B
Bash
Executable File
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
|