From 54e464f53dfc2b4d00d9add8a112d0089039a7cd Mon Sep 17 00:00:00 2001 From: rebuilt Date: Tue, 6 Jul 2021 13:01:23 +0200 Subject: [PATCH] Created Clipboard Support (markdown) --- Clipboard-Support.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Clipboard-Support.md diff --git a/Clipboard-Support.md b/Clipboard-Support.md new file mode 100644 index 0000000..d09fea1 --- /dev/null +++ b/Clipboard-Support.md @@ -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 + ```