-
my xwayland clipboard is broken for a specific app, i run copyq copy "$(xclip -o)" ; copyq clipboard | xclip -i when ctrl+c is used on the app, essentially, however, this setup gets rid of , is there any way around that? |
Beta Was this translation helpful? Give feedback.
Answered by
hluk
Nov 26, 2024
Replies: 1 comment 1 reply
-
CopyQ handles escape sequences in arguments (for example, But a better solution is to pass data to the standard input (as with
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Kommynct
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CopyQ handles escape sequences in arguments (for example,
\n
would be translated to a line break), unless you put the arguments after--
. So the first command would becopyq copy -- "$(xclip -o)"
.But a better solution is to pass data to the standard input (as with
xclip
):