From 4578b2e98fbb324421ee5845671a27a7b153d78d Mon Sep 17 00:00:00 2001 From: helpimnotdrowning <35247379+helpimnotdrowning@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:16:28 -0500 Subject: [PATCH] Document addition of wl-copy/wl-paste usage in Set/Get-Clipboard --- reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md | 2 +- reference/7.5/Microsoft.PowerShell.Management/Set-Clipboard.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md b/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md index 6eb29e2f9a92..cfc0cb59d3bb 100644 --- a/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md +++ b/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md @@ -25,7 +25,7 @@ The `Get-Clipboard` cmdlet gets the contents of the clipboard as text. Multiple returned as an array of strings similar to `Get-Content`. > [!NOTE] -> On Linux, this cmdlet requires the `xclip` utility to be in the path. +> On Linux, this cmdlet requires either the `xclip` (under X11) or `wl-paste` (under Wayland) utilities to be in the path. ## EXAMPLES diff --git a/reference/7.5/Microsoft.PowerShell.Management/Set-Clipboard.md b/reference/7.5/Microsoft.PowerShell.Management/Set-Clipboard.md index eb1514ecfd49..ef5568ca54cd 100644 --- a/reference/7.5/Microsoft.PowerShell.Management/Set-Clipboard.md +++ b/reference/7.5/Microsoft.PowerShell.Management/Set-Clipboard.md @@ -25,7 +25,7 @@ Set-Clipboard [-Value] [-Append] [-PassThru] [-AsOSC52] [-WhatIf] [-C The `Set-Clipboard` cmdlet sets the contents of the clipboard. > [!NOTE] -> On Linux, this cmdlet requires the `xclip` utility to be in the path. +> On Linux, this cmdlet requires either the `xclip` (under X11) or `wl-copy` (under Wayland) utilities to be in the path. ## EXAMPLES