From 167e9ac93f38ca3317a44e477cdc1ba4e8dfe43e Mon Sep 17 00:00:00 2001 From: yory8 <39745367+yory8@users.noreply.github.com> Date: Thu, 10 Sep 2020 09:03:27 +0200 Subject: [PATCH] docs: correct info on primary clip --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 6da21fb..4aafa5c 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,9 @@ These distros ship with clipman binaries in their repos: ## Usage -Run the binary in your Sway session by adding `exec wl-paste -t text --watch clipman store` (or `exec wl-paste -t text --watch clipman store 1>> PATH/TO/LOGFILE 2>&1 &` to log errors) at the beginning of your config. -For primary clipboard support, also add `exec wl-paste -p -t text --watch clipman store --histpath="~/.local/share/clipman-primary.json`. +Run the binary in your Sway session by adding `exec wl-paste -t text --watch clipman store` (or `exec wl-paste -t text --watch clipman store 1>> PATH/TO/LOGFILE 2>&1 &` to log errors) at the beginning of your config. If you want primary clipboard support, add the `-p` flag to the `wl-paste` command; note that primary and secondary clipboard will be mixed together. To query the history and select items, run the binary as `clipman pick -t wofi`. You can assign it to a keybinding: `bindsym $mod+h exec clipman pick -t wofi`. -For primary clipboard support, `clipman pick -t wofi --histpath="~/.local/share/clipman-primary.json`. You can pass additional arguments to the selector like this: `clipman pick --tool wofi -T'--prompt=my-prompt -i'` (both `--prompt` and `-i` are flags of wofi). You can use a custom selector like this: `clipman pick --print0 --tool=CUSTOM --tool-args="fzf --prompt 'pick > ' --bind 'tab:up' --cycle --read0"`.