Results 1 to 8 of 8
I was wondering if anyone could recommend a good clipboard manager that I can use with Gnome? I've actually found and tried several, but they all seem to add an ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-14-2008 #1Just Joined!
- Join Date
- Feb 2008
- Posts
- 9
Looking for a good clipboard manager...
I was wondering if anyone could recommend a good clipboard manager that I can use with Gnome? I've actually found and tried several, but they all seem to add an icon to the notification area. I'm hoping to find one which will work entirely in the background, simply allowing me to retain the contents of the last copy from an application which I have closed.
Any suggestions?
- 02-14-2008 #2forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
Welcome to the forums!
You could try Glipper. I've not tried it so don't know how well it works, but at least it's for Gnome. It might add the icons you referred to, though.
Best of luck with the search.oz
- 02-14-2008 #3Just Joined!
- Join Date
- Feb 2008
- Posts
- 9
Thanks for the welcome

Glipper was actually the first one I tried. It does put itself in the notification area "tray." I guess I am very picky, but I am surprised I haven't been able to find one that is invisible to the user... as a simple clipboard manager should be, in my opinion.
- 02-14-2008 #4forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
I googled a bit and found Clipboard Daemon. Maybe it'll work for you.
oz
- 02-14-2008 #5Just Joined!
- Join Date
- Feb 2008
- Posts
- 9
Thanks for the effort

It looks perfect, but I've tried that one too,, it just doesn't seem to work for me. I can run the process, but it just doesn't do what it's supposed to.
- 02-14-2008 #6forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
You might find some other clipboard options listed here. Maybe someone else will know of something in the interim.
Good luck with the search.oz
- 02-19-2008 #7Linux Guru
- Join Date
- Nov 2007
- Location
- Córdoba (Spain)
- Posts
- 1,513
Well, I don't know of such a thing, but since you seem the kind of person that likes self made solutions (as long as they work) I just though of a possibility.
The X primary buffer receives the contents usually when you select some text. There's a tool that can show the actual contents of the primary buffer: xsel. This should do it, for example, if I select this paragraph that I am writing, I get this when running it conveniently:
The problem is the contents of this buffer is erased if the host application is closed. But there's another buffer (the clipboard) that is not erased, so, we just need a way to copy this into the clipboard, and that can be done this way:$ xsel -o -p
The X primary buffer receives the contents usually when you select some text. There's a tool that can show the actual contents of the primary buffer: xsel. This should do it, for example, if I select this paragraph that I am writing, I get this when running it conveniently:
This outputs the primary buffer, and pipes the output transforming it into the input for the clipboard. From that momment, you should be able to paste it in most applications using whatever binding they use for that purpose (control+v, for example).Code:xsel -o -p | xsel -i -b
So, you basically have to bind this latest command to a key binding in your wm (I leave that as an exercise for you). Then you just select a text, and the text is cloned from the primary X buffer into the clipboard. From that moment, you can close your app and the contents of the clipboard should still be available to any application that can access it.
There will be apps that can't do that because only support the X primary buffers. I can't think of any easy workaround for them.
An alternative, are dockapps. I know that there are some wmaker applets that can control the clipboard (even with history and such).
- 02-19-2008 #8Just Joined!
- Join Date
- Feb 2008
- Posts
- 9
Thanks for the suggestion, i92gubuj. I can't seem to get it to work right, but I'll keep playing with it


Reply With Quote
