copyadd utility

Sometime you want to copy multiple stuff in the clipboard, this does just that, i'll make pull request to bind it in dwm also
This commit is contained in:
Trag Date 2022-11-02 20:25:45 +02:00 committed by GitHub
parent 4eeba15c0b
commit de8ed8c27e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
.local/bin/copyadd Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
bash -c 'printf "%b\n%b" "$(xsel -b)" "$(xsel)" | xsel -ib ; xsel -c'