sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit c3fe258eca7294bd10357c19ae751e7a48705f87
parent 5b00c470a78eebd975cf82a7a01c2ea66bf82ab0
Author: Kai Hendry <hendry@webconverger.com>
Date:   Fri,  3 Jul 2015 15:41:56 +0800

Document the 1 clipboard solution

Diffstat:
Ast.suckless.org/patches/1clipboard.mdwn | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/st.suckless.org/patches/1clipboard.mdwn b/st.suckless.org/patches/1clipboard.mdwn @@ -0,0 +1,21 @@ +# One clipboard + +## Description + +<abbr title="simple terminal">st</abbr> since [March 2015 only sets PRIMARY on +selection](http://git.suckless.org/st/commit/?id=28259f5750f0dc7f52bbaf8b746ec3dc576a58ee), +in accordance to the [Freedesktop +standard](http://standards.freedesktop.org/clipboards-spec/clipboards-latest.txt). + +However I don't like this <abbr title="User eXperience">UX</abbr>. I don't like +having to think about two clipboards. I don't like having to use typically +three key combination to copy my selected text into the clipboard used by my +browser. + +## Fix + +Append `clipcopy(NULL);` to the end of the xsetsel function in [st.c](http://git.suckless.org/st/tree/st.c). + +## Author + +[Kai Hendry](http://hendry.iki.fi/)