cdown / clipmenu

Clipboard management using dmenu
MIT License
1.11k stars 90 forks source link

Disable passing selection? #166

Closed AckslD closed 3 years ago

AckslD commented 3 years ago

Is is possible to disable passive selection (not sure this is the correct name)? I.e to only add entries to the history if they are explicitly copied and not if they are only selected?

cdown commented 3 years ago

Assuming that these come via the PRIMARY selection, you can just disable collection of it by only requesting CLIPBOARD:

CM_SELECTIONS=clipboard clipmenud
AckslD commented 3 years ago

Nice, thanks @cdown!