4 lines
96 B
Plaintext
4 lines
96 B
Plaintext
|
#!/bin/sh
|
||
|
printf %s "$*" | xclip -selection clipboard &&
|
||
|
notify-send "Copied to clipboard: $*"
|