clipmenu

Simple clipboard management using dmenu
git clone https://git.sinitax.com/cdown/clipmenu
Log | Files | Refs | README | LICENSE | sfeed.txt

commit 25c7503c6a8466e2890e310f245bd6bbee084865
parent e89f4843bbc59bfb8fec2a026f0b129fa08ce170
Author: Chris Down <chris@chrisdown.name>
Date:   Wed, 11 Mar 2020 14:57:46 +0000

Default CM_OWN_CLIPBOARD to 0

See #113, #102, and (probably) #119. This seems to cause more trouble
than it's really worth.

Diffstat:
Mclipmenud | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clipmenud b/clipmenud @@ -1,7 +1,7 @@ #!/usr/bin/env bash : "${CM_ONESHOT=0}" -: "${CM_OWN_CLIPBOARD=1}" +: "${CM_OWN_CLIPBOARD=0}" : "${CM_DEBUG=0}" : "${CM_DIR="${XDG_RUNTIME_DIR-"${TMPDIR-/tmp}"}"}" : "${CM_MAX_CLIPS=1000}" @@ -119,7 +119,7 @@ Environment variables: - $CM_DIR: specify the base directory to store the cache dir in (default: $XDG_RUNTIME_DIR, $TMPDIR, or /tmp) - $CM_MAX_CLIPS: soft maximum number of clips to store, 0 for inf. At $CM_MAX_CLIPS + 100, the number of clips is reduced to $CM_MAX_CLIPS (default: 1000) - $CM_ONESHOT: run once immediately, do not loop (default: 0) -- $CM_OWN_CLIPBOARD: take ownership of the clipboard (default: 1) +- $CM_OWN_CLIPBOARD: take ownership of the clipboard. Note: this may cause missed copies if some other application also handles the clipboard directly (default: 0) - $CM_SELECTIONS: space separated list of the selections to manage (default: "clipboard primary") - $CM_IGNORE_WINDOW: disable recording the clipboard in windows where the windowname matches the given regex (e.g. a password manager), do not ignore any windows if unset or empty (default: unset) EOF