2008-11-16
November 16, 2008
Take screenshots from the command line using ImageMagick:
import -window root screenshot.pngwith a delay:
sleep 10; import -window root screenshot.pngThe tufte-latex package contains a LaTeX document classes for creating handouts and books in the style of Edward Tufte.
- Bera Mono is a very nice monospace font included in TeX Live.
It’s installed by the Debian
texlive-fonts-extrapackage.
One of the things that irked me about zsh was that
M-f,M-band the like moved over slashes in paths. If I have a long path like/foo/bar/bazI want to be able to pressM-DELto deletebaz. By default zle, the zsh line editor, treats/foo/bar/bazas a single word. To get it to treat/as a word separator, place the following in your.zshrc:# Don't treat slashes as part of words WORDCHARS="${WORDCHARS:s#/#}"