1
vote
system wide keyboard hook on X under linux
XGrabKey on the root window is how xbindkey does it. Be careful about having some alternative method of killing the grab though, it's very annoying to have to go somewhere to ssh …
4
votes
Is gtk+ responsible for the awkward look of most linux applications?
The quality of the themes also vary.. It shouldn't be that hard to find a theme that's "horribly wrong" because of its basic choices and priorities. Personally, I like very compressed themes. I eve …
1
vote
In Ubuntu Intrepid, what keypress will take me to tty13?
There's a nice program called chvt that takes you to another virtual console. (e.g. 'sudo chvt 1' would pop me right out of X, right now.) It's a bit obnoxious in that X drivers don't always like v …
6
votes
How to write an application for the system tray in Linux
python-eggtrayicon
here's the example that comes with the debian package python-eggtrayicon in debian/testing...
#!/usr/bin/python
import pygtk
pygtk.require( …
11
votes
Best C++ Debugger For Linux
Data Display Debugger
It's a frontend for gdb, I suppose gdb is usable without it, but graphing those pointer swamps …
