From 49670f3b474d90cc32080948e6d89040cb6f89a6 Mon Sep 17 00:00:00 2001 From: "Wu, Zhenyu" Date: Thu, 5 Jun 2025 17:58:23 +0800 Subject: [PATCH] scripts/helpers.sh: support wayclip --- scripts/helpers.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/helpers.sh b/scripts/helpers.sh index 66beeec..6b69c2c 100644 --- a/scripts/helpers.sh +++ b/scripts/helpers.sh @@ -148,6 +148,8 @@ clipboard_copy_command() { fi elif command_exists "clip.exe"; then # WSL clipboard command echo "cat | clip.exe" + elif command_exists "waycopy"; then # wayclip: Wayland clipboard utilities + echo "waycopy" elif command_exists "wl-copy"; then # wl-clipboard: Wayland clipboard utilities echo "wl-copy" elif command_exists "xsel"; then