Created Clipboard Support (markdown)

rebuilt 2021-07-06 13:01:23 +02:00
parent eed0577895
commit 54e464f53d

24
Clipboard-Support.md Normal file

@ -0,0 +1,24 @@
- On Mac `pbcopy` should be built-in
- Ubuntu
```bash
sudo apt install xclip
```
- Arch
```bash
sudo pacman -S xclip
```
- WSL2
Make sure ~/bin is in your path in this case.
```bash
curl -sLo/tmp/win32yank.zip https://github.com/equalsraf/win32yank/releases/download/v0.0.4/win32yank-x64.zip
unzip -p /tmp/win32yank.zip win32yank.exe > /tmp/win32yank.exe
chmod +x /tmp/win32yank.exe
mv /tmp/win32yank.exe ~/bin
```