Tip of the day
If you're fancy, like this strange shirtless whistler, and running Xgl, you might be annoyed that Shift + Backspace restarts X. I was. Here's something to throw in /etc/init.d/. Remember to `update-rc.d
#!/bin/bash
#
# Fix problem with shift + backspace in Xgl
#
case "$1" in
start)
xmodmap -e "keycode 22 = BackSpace"
exit 0
;;
*)
exit 0
;;
esac