5 lines
75 B
Plaintext
5 lines
75 B
Plaintext
|
#!/bin/sh
|
||
|
THING="$(xclip -o)"
|
||
|
echo "$THING" >> /tmp/thing.txt
|
||
|
mpv "$THING"
|