clipmenu

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

commit 6facea933bb46052c0ea69da4b19f1bf939eb1b9
parent db05c519427a507d0c82b177105bc691ff819e30
Author: drake-on-mandrake <bdwv@c.wlist.ro>
Date:   Tue,  7 Mar 2017 19:37:42 -0800

Add `--logfile /dev/null` to the xsel command
Diffstat:
Mclipmenud | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clipmenud b/clipmenud @@ -118,7 +118,7 @@ while sleep "${CLIPMENUD_SLEEP:-0.5}"; do # We can't colocate this with the above copying code because # https://github.com/cdown/clipmenu/issues/34 requires knowing if # we would skip first. - xsel --logfile /dev/null -o --"$selection" | xsel -i --"$selection" + xsel --logfile /dev/null -o --"$selection" | xsel --logfile /dev/null -i --"$selection" fi done