Skip to content

Instantly share code, notes, and snippets.

View progzone122's full-sized avatar
🎯
Focusing

Diablo progzone122

🎯
Focusing
View GitHub Profile
@progzone122
progzone122 / clipboard.sh
Created May 19, 2024 13:11
Fixing the wps-office clipboard in Linux on Wayland
#!/bin/bash
while true; do
wl-paste | xclip -selection clipboard
xclip -selection clipboard -o | wl-copy
sleep 0.5
done