Skip to content

Commit

Permalink
fix: read clipboard error on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed Oct 30, 2023
1 parent 19ff4d4 commit a11e6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tool/Clipboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Clipboard extends AbstractObj
public const WRITER_ON_LINUX = 'xsel';

public const READER_ON_MAC = 'pbpaste';
public const READER_ON_WIN = 'clip';
public const READER_ON_WIN = 'powershell get-clipboard';
public const READER_ON_LINUX = 'xclip';

/**
Expand Down

0 comments on commit a11e6d5

Please sign in to comment.