From a4de8b7d7526f46831999adff39e5d3d9452ce1b Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 7 Dec 2023 20:34:57 +0100 Subject: [PATCH] docs(scripts): fix typo in kamoji generator --- docs/scripts.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scripts.org b/docs/scripts.org index 8e0a996..eb23bec 100644 --- a/docs/scripts.org +++ b/docs/scripts.org @@ -210,7 +210,7 @@ fi # If the current session is Wayland, copy with wl-copy, otherwise copy with xclipboard if [ "$XDG_SESSION_TYPE" = "wayland" ] -then printf '%s' "$choice" | wc-copy # Wayland +then printf '%s' "$choice" | wl-copy # Wayland else printf '%s' "$choice" | xclip -sel clip # X11 fi